tool/Makefile.am
changeset 1142 59be91dfcbe1
parent 1134 3356141fa2f8
child 1165 c5d6e28eec91
equal deleted inserted replaced
1141:7ffbca63fc72 1142:59be91dfcbe1
    27 #  software based on IgH EtherCAT master stay compatible with the actual
    27 #  software based on IgH EtherCAT master stay compatible with the actual
    28 #  EtherCAT specification (which are released themselves as an open
    28 #  EtherCAT specification (which are released themselves as an open
    29 #  standard) as the (only) precondition to have the right to use EtherCAT
    29 #  standard) as the (only) precondition to have the right to use EtherCAT
    30 #  Technology, IP and trade marks.
    30 #  Technology, IP and trade marks.
    31 #
    31 #
       
    32 #  vim: syntax=make
       
    33 #
    32 #------------------------------------------------------------------------------
    34 #------------------------------------------------------------------------------
    33 
    35 
    34 bin_PROGRAMS = ethercat
    36 bin_PROGRAMS = ethercat
    35 
    37 
    36 ethercat_SOURCES = \
    38 ethercat_SOURCES = \
    37     MasterDevice.cpp MasterDevice.h \
    39 	MasterDevice.cpp MasterDevice.h \
       
    40 	Command.cpp \
       
    41 	CommandAlias.cpp \
       
    42 	CommandConfig.cpp \
       
    43 	CommandData.cpp \
       
    44 	CommandDebug.cpp \
       
    45 	CommandDomains.cpp \
       
    46 	CommandDownload.cpp \
       
    47 	CommandMaster.cpp \
       
    48 	CommandPdos.cpp \
       
    49 	CommandSdos.cpp \
       
    50 	CommandSiiRead.cpp \
       
    51 	CommandSiiWrite.cpp \
       
    52 	CommandSlaves.cpp \
       
    53 	CommandStates.cpp \
       
    54 	CommandUpload.cpp \
       
    55 	CommandXml.cpp \
    38 	coe_datatypes.cpp \
    56 	coe_datatypes.cpp \
    39 	sii_crc.cpp \
    57 	sii_crc.cpp \
    40     cmd_alias.cpp \
    58 	main.cpp
    41     cmd_config.cpp \
       
    42     cmd_data.cpp \
       
    43     cmd_debug.cpp \
       
    44 	cmd_domain.cpp \
       
    45 	cmd_master.cpp \
       
    46 	cmd_pdos.cpp \
       
    47 	cmd_sdos.cpp \
       
    48 	cmd_download.cpp \
       
    49 	cmd_upload.cpp \
       
    50 	cmd_slaves.cpp \
       
    51 	cmd_sii_read.cpp \
       
    52 	cmd_sii_write.cpp \
       
    53 	cmd_states.cpp \
       
    54 	cmd_xml.cpp \
       
    55     main.cpp
       
    56 
    59 
    57 ethercat_CXXFLAGS = -I../master -Wall
    60 ethercat_CXXFLAGS = -I../master -Wall
    58 
    61 
    59 #------------------------------------------------------------------------------
    62 #------------------------------------------------------------------------------