2
0
mirror of https://github.com/boostorg/convert.git synced 2026-01-27 06:42:21 +00:00
Files
convert/makefile
Vladimir Batov cd9602907b is_converter
2014-06-14 18:37:46 +10:00

18 lines
391 B
Makefile

ifneq ($(DEVMAKE),)
BOOST_ROOT = $(HOME)/dev/boost_1_55_0
cflags = -Iinclude -I$(BOOST_ROOT) -Wno-unused-local-typedefs -Wno-unused-variable -Wno-uninitialized
target = test-convert.exe
sources = $(wildcard example/*.cpp) $(wildcard test/*.cpp)
include $(DEVMAKE)/makefile
else
all: $(wildcard example/*.cpp) $(wildcard test/*.cpp)
g++ $^ -I./include -I../boost_1_55_0 -lrt
endif