makefile 1.6 KB

1234567891011121314151617181920212223242526272829
  1. BOOST_ROOT = $(PRJROOT)/boost
  2. cflags = -O3 -I./include -I$(BOOST_ROOT) -Wno-unused-variable -Wno-uninitialized -Wno-deprecated-declarations
  3. lflags = -L$(BOOST_ROOT)/stage/lib -lboost_timer -lboost_chrono -lboost_system
  4. target_1 = convert-test-callable test/callable.cpp
  5. target_2 = convert-test-is-converter test/is_converter.cpp
  6. target_3 = convert-test-fallbacks test/fallbacks.cpp
  7. target_4 = convert-test-spirit-converter test/spirit_converter.cpp
  8. target_5 = convert-test-stream-converter test/stream_converter.cpp
  9. target_6 = convert-test-lcast-converter test/lcast_converter.cpp
  10. target_7 = convert-test-printf-converter test/printf_converter.cpp
  11. target_8 = convert-test-strtol-converter test/strtol_converter.cpp
  12. target_9 = convert-test-encryption test/encryption.cpp
  13. target_10 = convert-test-user-type test/user_type.cpp
  14. target_11 = convert-test-str-to-int test/str_to_int.cpp
  15. target_12 = convert-test-sfinae test/sfinae.cpp
  16. target_13 = convert-test-has-member test/has_member.cpp
  17. target_14 = convert-test-performance test/performance.cpp
  18. target_15 = convert-test-performance-spirit test/performance_spirit.cpp
  19. target_21 = convert-example-algorithms example/algorithms.cpp
  20. target_22 = convert-example-default_converter example/default_converter.cpp
  21. target_23 = convert-example-getting_serious example/getting_serious.cpp
  22. target_24 = convert-example-getting_started example/getting_started.cpp
  23. target_25 = convert-example-lexical_cast example/lexical_cast.cpp
  24. target_26 = convert-example-stream example/stream.cpp
  25. include $(PRJROOT)/make/makefile