fp@922: #------------------------------------------------------------------------------ fp@922: # fp@922: # $Id$ fp@922: # fp@1326: # Copyright (C) 2006-2008 Florian Pose, Ingenieurgemeinschaft IgH fp@922: # fp@922: # This file is part of the IgH EtherCAT Master. fp@922: # fp@1326: # The IgH EtherCAT Master is free software; you can redistribute it and/or fp@1326: # modify it under the terms of the GNU General Public License version 2, as fp@1326: # published by the Free Software Foundation. fp@922: # fp@1326: # The IgH EtherCAT Master is distributed in the hope that it will be useful, fp@1326: # but WITHOUT ANY WARRANTY; without even the implied warranty of fp@1326: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General fp@1326: # Public License for more details. fp@922: # fp@1326: # You should have received a copy of the GNU General Public License along fp@1326: # 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@1363: # --- fp@1363: # fp@1363: # The license mentioned above concerns the source code only. Using the fp@1363: # EtherCAT technology and brand is only permitted in compliance with the fp@1326: # industrial property and similar rights of Beckhoff Automation GmbH. fp@922: # fp@1363: # --- fp@1363: # fp@1516: # vim: syntax=automake fp@1142: # fp@922: #------------------------------------------------------------------------------ fp@922: fp@1516: EXTRA_DIST = fp@1516: fp@922: bin_PROGRAMS = ethercat fp@922: fp@922: ethercat_SOURCES = \ fp@1877: ../master/soe_errors.c \ fp@1168: Command.cpp \ fp@1142: CommandAlias.cpp \ fp@1826: CommandCStruct.cpp \ fp@1142: CommandConfig.cpp \ fp@1142: CommandData.cpp \ fp@1142: CommandDebug.cpp \ fp@1142: CommandDomains.cpp \ fp@1142: CommandDownload.cpp \ fp@1335: CommandFoeRead.cpp \ fp@1335: CommandFoeWrite.cpp \ fp@1422: CommandGraph.cpp \ fp@1142: CommandMaster.cpp \ fp@1142: CommandPdos.cpp \ fp@1388: CommandRegRead.cpp \ fp@1388: CommandRegWrite.cpp \ fp@1961: CommandRescan.cpp \ fp@1142: CommandSdos.cpp \ fp@1142: CommandSiiRead.cpp \ fp@1142: CommandSiiWrite.cpp \ fp@1142: CommandSlaves.cpp \ fp@1831: CommandSoeRead.cpp \ fp@1837: CommandSoeWrite.cpp \ fp@1142: CommandStates.cpp \ fp@1142: CommandUpload.cpp \ fp@1165: CommandVersion.cpp \ fp@1142: CommandXml.cpp \ fp@1835: DataTypeHandler.cpp \ fp@1335: FoeCommand.cpp \ fp@1168: MasterDevice.cpp \ fp@1826: NumberListParser.cpp \ fp@1184: SdoCommand.cpp \ fp@1868: SoeCommand.cpp \ fp@1168: main.cpp \ fp@1168: sii_crc.cpp fp@1168: fp@1516: if ENABLE_EOE fp@1516: ethercat_SOURCES += CommandEoe.cpp fp@1516: else fp@1516: EXTRA_DIST += CommandEoe.cpp fp@1516: endif fp@1516: fp@1168: noinst_HEADERS = \ fp@1168: Command.h \ fp@1168: CommandAlias.h \ fp@1826: CommandCStruct.h \ fp@1168: CommandConfig.h \ fp@1168: CommandData.h \ fp@1168: CommandDebug.h \ fp@1168: CommandDomains.h \ fp@1168: CommandDownload.h \ fp@1335: CommandFoeRead.h \ fp@1335: CommandFoeWrite.h \ fp@1422: CommandGraph.h \ fp@1168: CommandMaster.h \ fp@1168: CommandPdos.h \ fp@1388: CommandRegRead.h \ fp@1388: CommandRegWrite.h \ fp@1961: CommandRescan.h \ fp@1168: CommandSdos.h \ fp@1168: CommandSiiRead.h \ fp@1168: CommandSiiWrite.h \ fp@1168: CommandSlaves.h \ fp@1831: CommandSoeRead.h \ fp@1837: CommandSoeWrite.h \ fp@1168: CommandStates.h \ fp@1168: CommandUpload.h \ fp@1168: CommandVersion.h \ fp@1168: CommandXml.h \ fp@1835: DataTypeHandler.h \ fp@1335: FoeCommand.h \ fp@1335: MasterDevice.h \ fp@1826: NumberListParser.h \ fp@1184: SdoCommand.h \ fp@1868: SoeCommand.h \ fp@1168: sii_crc.h fp@922: fp@1516: if ENABLE_EOE fp@1516: noinst_HEADERS += CommandEoe.h fp@1516: else fp@1516: EXTRA_DIST += CommandEoe.h fp@1516: endif fp@1516: fp@1528: REV = `if test -s $(top_srcdir)/revision; then \ fp@1528: cat $(top_srcdir)/revision; \ fp@1165: else \ fp@1528: hg id -i $(top_srcdir) 2>/dev/null || echo "unknown"; \ fp@1165: fi` fp@1165: fp@1835: ethercat_CXXFLAGS = \ fp@1835: -I$(top_srcdir)/include \ fp@1835: -I$(top_srcdir)/master \ fp@1975: -Wall -DREV=$(REV) \ fp@1975: -fno-strict-aliasing fp@922: fp@922: #------------------------------------------------------------------------------