373a8c32b2
git-svn-id: file:///srv/dev-disk-by-uuid-17e88007-4d0c-45e0-8757-cacfcc458630/repositories/svn/Diplomarbeit@55 9fe90eed-be63-e94b-8204-d34ff4c2ff93
35 lines
495 B
Makefile
35 lines
495 B
Makefile
bin_PROGRAMS = testapp
|
|
testapp_SOURCES = \
|
|
analogue_test.c \
|
|
BpMessageFormat.c \
|
|
BpPort.c \
|
|
bus.c \
|
|
BusProtocol.c \
|
|
BUS_test.c \
|
|
CAN_test.c \
|
|
CF_test.c \
|
|
Crc.c \
|
|
digital_test.c \
|
|
EEPROM_test.c \
|
|
ElecStatusCache.c \
|
|
ethernet_test.c \
|
|
LED_test.c \
|
|
main.c \
|
|
mem_mod.c \
|
|
MessageHandlerQueue.c \
|
|
MessageQueue.c \
|
|
protocolfunctions.c \
|
|
ProtocolThread.c \
|
|
relay_test.c \
|
|
RemoteProcedureCalls.c \
|
|
RpcResults.c \
|
|
smc4000io.c \
|
|
USB_test.c
|
|
|
|
|
|
testapp_LDFLAGS = -static
|
|
testapp_LDADD = -L. -lm -lpthread
|
|
|
|
|
|
|