fp@922: #------------------------------------------------------------------------------ fp@922: # fp@922: # $Id$ fp@922: # fp@1685: # Copyright (C) 2006-2008 Florian Pose, Ingenieurgemeinschaft IgH fp@922: # fp@922: # This file is part of the IgH EtherCAT Master. fp@922: # fp@1685: # The IgH EtherCAT Master is free software; you can redistribute it and/or fp@1685: # modify it under the terms of the GNU General Public License version 2, as fp@1685: # published by the Free Software Foundation. fp@922: # fp@1685: # The IgH EtherCAT Master is distributed in the hope that it will be useful, fp@1685: # but WITHOUT ANY WARRANTY; without even the implied warranty of fp@1685: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General fp@1685: # Public License for more details. fp@922: # fp@1685: # You should have received a copy of the GNU General Public License along fp@1685: # 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@1685: # Using the EtherCAT technology and brand is permitted in compliance with the fp@1685: # industrial property and similar rights of Beckhoff Automation GmbH. 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: #------------------------------------------------------------------------------