1234567891011121314151617181920212223242526272829303132 |
- AM_SOURCES= ant.cpp ant.h base64.cpp base64.h card.cpp card.h clock.h \
- io_buf.h line.h log.h message.cpp message.h point.cpp \
- point.h tdoa_sync.cpp tdoa_sync.h web-client.cpp web-client.h worker.cpp worker.h zio.h \
- zloop.h znet.cpp znet.h zstream.h net-service.h net-service.cpp
- AM_CPPFLAGS=-Wall -pthread -m64 -std=c++11 -fPIC
- AM_LDFLAGS= -Wall -pthread -m64 -std=c++11 -fPIC
- bin_PROGRAMS=yals client async test
- yals_SOURCES=${AM_SOURCES} main.cpp
- yals_CPPFLAGS=${AM_CPPFLAGS}
- yals_LDFLAGS=${AM_LDFLAGS} -L. -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
|