Makefile.am 891 B

1234567891011121314151617181920212223242526272829303132
  1. AM_SOURCES= ant.cpp ant.h base64.cpp base64.h card.cpp card.h clock.h \
  2. io_buf.h line.h log.h message.cpp message.h point.cpp \
  3. point.h tdoa_sync.cpp tdoa_sync.h web-client.cpp web-client.h worker.cpp worker.h zio.h \
  4. zloop.h znet.cpp znet.h zstream.h net-service.h net-service.cpp
  5. AM_CPPFLAGS=-Wall -pthread -m64 -std=c++11 -fPIC
  6. AM_LDFLAGS= -Wall -pthread -m64 -std=c++11 -fPIC
  7. bin_PROGRAMS=yals client async test
  8. yals_SOURCES=${AM_SOURCES} main.cpp
  9. yals_CPPFLAGS=${AM_CPPFLAGS}
  10. yals_LDFLAGS=${AM_LDFLAGS} -L. -lzlog -lrt
  11. async_SOURCES=async.cpp
  12. async_CPPFLAGS=${AM_CPPFLAGS}
  13. async_LDFLAGS=${AM_LDFLAGS} -L. -lzlog -lrt
  14. client_SOURCES=client.cpp message_file.cpp
  15. client_CPPFLAGS=${AM_CPPFLAGS}
  16. client_LDFLAGS=${AM_LDFLAGS} -L. -lzlog
  17. test_SOURCES=test.cpp base64.cpp
  18. test_CPPFLAGS=${AM_CPPFLAGS}
  19. test_LDFLAGS=${AM_LDFLAGS} -L. -lzlog -lrt
  20. DEFS=
  21. EXTRA_DIST=message_file.h