fp@922: #------------------------------------------------------------------------------ fp@922: # fp@922: # $Id$ fp@922: # fp@922: # Copyright (C) 2006 Florian Pose, Ingenieurgemeinschaft IgH fp@922: # fp@922: # This file is part of the IgH EtherCAT Master. fp@922: # fp@922: # The IgH EtherCAT Master is free software; you can redistribute it fp@922: # and/or modify it under the terms of the GNU General Public License fp@922: # as published by the Free Software Foundation; either version 2 of the fp@922: # License, or (at your option) any later version. fp@922: # fp@922: # The IgH EtherCAT Master is distributed in the hope that it will be fp@922: # useful, but WITHOUT ANY WARRANTY; without even the implied warranty of fp@922: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the fp@922: # GNU General Public License for more details. fp@922: # fp@922: # You should have received a copy of the GNU General Public License fp@922: # along with the IgH EtherCAT Master; if not, write to the Free Software fp@922: # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA fp@922: # fp@922: # The right to use EtherCAT Technology is granted and comes free of fp@922: # charge under condition of compatibility of product made by fp@922: # Licensee. People intending to distribute/sell products based on the fp@922: # code, have to sign an agreement to guarantee that products using fp@922: # software based on IgH EtherCAT master stay compatible with the actual fp@922: # EtherCAT specification (which are released themselves as an open fp@922: # standard) as the (only) precondition to have the right to use EtherCAT fp@922: # Technology, IP and trade marks. fp@922: # fp@1142: # vim: syntax=make fp@1142: # fp@922: #------------------------------------------------------------------------------ fp@922: fp@922: bin_PROGRAMS = ethercat fp@922: fp@922: ethercat_SOURCES = \ fp@1168: Command.cpp \ fp@1142: CommandAlias.cpp \ fp@1142: CommandConfig.cpp \ fp@1142: CommandData.cpp \ fp@1142: CommandDebug.cpp \ fp@1142: CommandDomains.cpp \ fp@1142: CommandDownload.cpp \ fp@1142: CommandMaster.cpp \ fp@1142: CommandPdos.cpp \ fp@1142: CommandSdos.cpp \ fp@1142: CommandSiiRead.cpp \ fp@1142: CommandSiiWrite.cpp \ fp@1142: CommandSlaves.cpp \ fp@1142: CommandStates.cpp \ fp@1142: CommandUpload.cpp \ fp@1165: CommandVersion.cpp \ fp@1142: CommandXml.cpp \ fp@1168: MasterDevice.cpp \ fp@1184: SdoCommand.cpp \ fp@1168: main.cpp \ fp@1168: sii_crc.cpp fp@1168: fp@1168: noinst_HEADERS = \ fp@1168: Command.h \ fp@1168: CommandAlias.h \ fp@1168: CommandConfig.h \ fp@1168: CommandData.h \ fp@1168: CommandDebug.h \ fp@1168: CommandDomains.h \ fp@1168: CommandDownload.h \ fp@1168: CommandMaster.h \ fp@1168: CommandPdos.h \ fp@1168: CommandSdos.h \ fp@1168: CommandSiiRead.h \ fp@1168: CommandSiiWrite.h \ fp@1168: CommandSlaves.h \ fp@1168: CommandStates.h \ fp@1168: CommandUpload.h \ fp@1168: CommandVersion.h \ fp@1168: CommandXml.h \ fp@1168: MasterDevice.h \ fp@1184: SdoCommand.h \ fp@1168: byteorder.h \ fp@1168: sii_crc.h fp@922: fp@1165: REV = `if test -s $(srcdir)/../svnrevision; then \ fp@1165: cat $(srcdir)/../svnrevision; \ fp@1165: else \ fp@1165: svnversion $(srcdir)/.. 2>/dev/null || echo "unknown"; \ fp@1165: fi` fp@1165: fp@1165: ethercat_CXXFLAGS = -I../master -Wall -DSVNREV=$(REV) fp@922: fp@922: #------------------------------------------------------------------------------