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