Makefile.am 2.7 KB

123456789101112131415161718192021222324252627282930313233343536
  1. bin_PROGRAMS=yals
  2. noinst_PROGRAMS=client async test
  3. SRC_IN= websocket/singleton_test_class1.cpp websocket/wsClient.cpp websocket/wsClientMgr.cpp websocket/wsTimerThread.cpp \
  4. db_api/CDBConnect.cpp db_api/CDBConnPool.cpp db_api/CDBHelper.cpp db_api/CDBResultSet.cpp websocket/jsonBuilder.cpp websocket/jsonBuilder.h websocket/thread_safe_map.h \
  5. monkey_car/base_data.h monkey_car/fp_path.h monkey_car/linear_fit.h monkey_car/monkeycar_area.cpp monkey_car/monkeycar_area.h monkey_car/monkeycar_bus.cpp monkey_car/monkeycar_bus.h monkey_car/monkeycar_person.cpp monkey_car/monkeycar_person.h monkey_car/monkey_fit.h tqueue.h cardMgr.cpp cardMgr.h geo_hash.h geo_hash.cpp bindmorecard.h bindmorecard.cpp \
  6. module_service/module_area.h module_service/module_area_over_count.h module_service/module_area_timeout.h module_service/module_attendance_person.h module_service/module_attendance_vehicle.h module_service/module_call.cpp module_service/module_call.h module_service/module_call_help.h module_service/module_const.h module_service/module_mgr.h module_service/module_mine.h module_service/module_other_alarm.h module_service/module_over_speed_vehicle.h module_service/module_site.h module_service/module_web.cpp module_service/module_web.h ya_event.h ya_event.cpp mine.h mine.cpp common_tool.h
  7. AM_SOURCES= $(SRC_IN) src/sio_client.cpp src/sio_socket.cpp src/internal/sio_client_impl.cpp src/internal/sio_packet.cpp src/sio_client.h src/sio_message.h src/sio_socket.h src/internal/sio_client_impl.h src/internal/sio_packet.h \
  8. select_tool.h select_tool.cpp line_fit.h line_fit.cpp card_path.h card_path.cpp loc_point.h loc_point.cpp ant.cpp ant.h card.cpp card.h clock.h landmark.h landmark.cpp special_area.h special_area.cpp \
  9. crc.cpp crc.h io_buf.h line.h loc_tool.cpp loc_tool.h message.cpp \
  10. message_file.h message.h net-service.cpp net-service.h point.cpp point.h tdoa_sync.cpp tdoa_sync.h \
  11. worker.cpp worker.h zio.h zloop.h znet.cpp znet.h zstream.h site_area.cpp site_area.h area.h area.cpp
  12. AM_CPPFLAGS=-Wall -pthread -m64 -std=c++11 -fPIC -I${prefix}/include -I./src -I/usr/local/mysql/include -I../include/websocketpp -I../include
  13. AM_LDFLAGS= -Wall -pthread -m64 -std=c++11 -fPIC -L${prefix}/lib -L/usr/local/mysql/lib
  14. yals_SOURCES=${AM_SOURCES} main.cpp
  15. yals_CPPFLAGS=${AM_CPPFLAGS}
  16. yals_LDFLAGS=${AM_LDFLAGS} -lzlog -lrt -lboost_chrono -lboost_system -lboost_thread -lmysqlclient
  17. async_SOURCES=async.cpp
  18. async_CPPFLAGS=${AM_CPPFLAGS}
  19. async_LDFLAGS=${AM_LDFLAGS} -L. -lzlog -lrt
  20. client_SOURCES=client.cpp message_file.cpp
  21. client_CPPFLAGS=${AM_CPPFLAGS}
  22. client_LDFLAGS=${AM_LDFLAGS} -L. -lzlog
  23. test_SOURCES=test.cpp base64.cpp
  24. test_CPPFLAGS=${AM_CPPFLAGS}
  25. test_LDFLAGS=${AM_LDFLAGS} -L. -lzlog -lrt
  26. DEFS=
  27. EXTRA_DIST=message_file.h