Makefile.am 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. SUBDIRS=db websocket
  2. bin_PROGRAMS=3xls
  3. noinst_PROGRAMS=client async test
  4. SRC_MONKEYCAR= monkey_car/monkeycar_area.cpp monkey_car/monkeycar_bus.cpp monkey_car/monkeycar_person.cpp
  5. SRC_MODULE_SERVICE= module_service/area_business_car_attendance.cpp module_service/area_business_card_enter_or_leave.cpp \
  6. module_service/area_business_count_checker.cpp module_service/area_business_forbid.cpp \
  7. module_service/area_business_geofault.cpp module_service/area_business_motionless_persion.cpp \
  8. module_service/area_business_person_attendance.cpp module_service/area_business_person_dwell_checker.cpp \
  9. module_service/area_business_post_area.cpp module_service/area_business_speed_checker.cpp \
  10. module_service/area_business_work_rate.cpp \
  11. module_service/module_meta_data_changed.cpp module_service/module_web.cpp \
  12. module_service/module_call.cpp module_service/module_call_help.cpp module_service/module_mgr.cpp \
  13. module_service/module_other_alarm.cpp \
  14. module_service/module_traffic_light.cpp module_service/module_traffic_light_manager.cpp \
  15. module_service/module_traffic_light_rule.cpp module_service/module_screen.cpp \
  16. module_service/module_device_net.cpp
  17. SRC_SYNCTIME_MODULE= sync_time/sync_helper.cpp sync_time/sync_manager.cpp
  18. SRC_MAIN= ant.cpp area.cpp base64.cpp bindmorecard.cpp mine_business.cpp card_area.cpp card_base.cpp card_car.cpp his_location.cpp\
  19. card.cpp cardMgr.cpp card_path.cpp card_person.cpp crc.cpp geo_hash.cpp \
  20. landmark.cpp line_fit.cpp message.cpp message_file.cpp mine.cpp \
  21. net-service.cpp point.cpp special_area.cpp tdoa_sync.cpp visit.cpp \
  22. web-client.cpp worker.cpp event.cpp znet.cpp sys_setting.cpp area_business.cpp\
  23. forbid_staff_down_mine.cpp bulletin_broad_show.cpp area_persons_thre_time.cpp \
  24. service_position.cpp
  25. AM_SOURCES=$(SRC_MONKEYCAR) $(SRC_MODULE_SERVICE) $(SRC_SYNCTIME_MODULE) $(SRC_MAIN) $(SRC_MAIN_EVENT)
  26. AM_CPPFLAGS=-Wall -pthread -m64 -g -std=c++11 -I${prefix}/include -I/usr/local/include/mysql -Iwebsocket -Iwebsocket/sio -I./db -Imodule_service -I./sync_time -I/usr/local/include/eigen3
  27. AM_LDFLAGS=-Wall -pthread -m64 -g -std=c++11 -L${prefix}/lib -L/usr/local/lib
  28. 3xls_SOURCES=${AM_SOURCES} main.cpp
  29. 3xls_CPPFLAGS=${AM_CPPFLAGS}
  30. 3xls_LDFLAGS=${AM_LDFLAGS} -lev -lzlog -lrt -lboost_chrono -lboost_system -lboost_thread -lmysqlclient
  31. 3xls_LDADD=db/libyadb.a websocket/libwebsocket.a ${prefix}/lib/libpoint_algorithm.a
  32. async_SOURCES=async.cpp
  33. async_CPPFLAGS=${AM_CPPFLAGS}
  34. async_LDFLAGS=${AM_LDFLAGS} -L. -lzlog -lrt -lev
  35. client_SOURCES=client.cpp message_file.cpp
  36. client_CPPFLAGS=${AM_CPPFLAGS}
  37. client_LDFLAGS=${AM_LDFLAGS} -L. -lzlog
  38. test_SOURCES=test.cpp base64.cpp point.cpp
  39. test_CPPFLAGS=${AM_CPPFLAGS}
  40. test_LDFLAGS=${AM_LDFLAGS} -L. -lzlog -lrt
  41. DEFS=
  42. EXTRA_DIST=