123456789101112131415161718192021222324252627282930 |
- bin_PROGRAMS=yals
- noinst_PROGRAMS=client async test
- AM_SOURCES=ant.cpp ant.h card.cpp card.h clock.h \
- crc.cpp crc.h io_buf.h line.h loc_tool.cpp loc_tool.h message.cpp \
- message_file.h message.h net-service.cpp net-service.h point.cpp point.h tdoa_sync.cpp tdoa_sync.h \
- worker.cpp worker.h zio.h zloop.h znet.cpp znet.h zstream.h
- AM_CPPFLAGS=-Wall -pthread -m64 -std=c++11 -fPIC -I${prefix}/include
- AM_LDFLAGS= -Wall -pthread -m64 -std=c++11 -fPIC -L${prefix}/lib
- yals_SOURCES=${AM_SOURCES} main.cpp
- yals_CPPFLAGS=${AM_CPPFLAGS}
- yals_LDFLAGS=${AM_LDFLAGS} -lzlog -lrt
- async_SOURCES=async.cpp
- async_CPPFLAGS=${AM_CPPFLAGS}
- async_LDFLAGS=${AM_LDFLAGS} -L. -lzlog -lrt
- client_SOURCES=client.cpp message_file.cpp
- client_CPPFLAGS=${AM_CPPFLAGS}
- client_LDFLAGS=${AM_LDFLAGS} -L. -lzlog
- test_SOURCES=test.cpp base64.cpp
- test_CPPFLAGS=${AM_CPPFLAGS}
- test_LDFLAGS=${AM_LDFLAGS} -L. -lzlog -lrt
- DEFS=
- EXTRA_DIST=message_file.h
|