1
0

Makefile.am 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. SRC_SYNCTIME_MODULE= sync_time/sync_helper.cpp sync_time/sync_manager.cpp
  17. 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\
  18. card.cpp cardMgr.cpp card_path.cpp card_person.cpp crc.cpp geo_hash.cpp \
  19. landmark.cpp line_fit.cpp message.cpp message_file.cpp mine.cpp \
  20. net-service.cpp point.cpp special_area.cpp tdoa_sync.cpp visit.cpp \
  21. web-client.cpp worker.cpp event.cpp znet.cpp sys_setting.cpp area_business.cpp\
  22. forbid_staff_down_mine.cpp bulletin_broad_show.cpp area_persons_thre_time.cpp \
  23. service_position.cpp
  24. AM_SOURCES=$(SRC_MONKEYCAR) $(SRC_MODULE_SERVICE) $(SRC_SYNCTIME_MODULE) $(SRC_MAIN) $(SRC_MAIN_EVENT)
  25. 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
  26. AM_LDFLAGS=-Wall -pthread -m64 -g -std=c++11 -L${prefix}/lib -L/usr/local/lib
  27. 3xls_SOURCES=${AM_SOURCES} main.cpp
  28. 3xls_CPPFLAGS=${AM_CPPFLAGS}
  29. 3xls_LDFLAGS=${AM_LDFLAGS} -lev -lzlog -lrt -lboost_chrono -lboost_system -lboost_thread -lmysqlclient -lthree_rates
  30. 3xls_LDADD=db/libyadb.a websocket/libwebsocket.a ${prefix}/lib/libpoint_algorithm.a
  31. async_SOURCES=async.cpp
  32. async_CPPFLAGS=${AM_CPPFLAGS}
  33. async_LDFLAGS=${AM_LDFLAGS} -L. -lzlog -lrt -lev
  34. client_SOURCES=client.cpp message_file.cpp
  35. client_CPPFLAGS=${AM_CPPFLAGS}
  36. client_LDFLAGS=${AM_LDFLAGS} -L. -lzlog
  37. test_SOURCES=test.cpp base64.cpp point.cpp
  38. test_CPPFLAGS=${AM_CPPFLAGS}
  39. test_LDFLAGS=${AM_LDFLAGS} -L. -lzlog -lrt
  40. DEFS=
  41. EXTRA_DIST=