Makefile.am 939 B

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