mirror of
https://github.com/boostorg/convert.git
synced 2026-01-27 06:42:21 +00:00
18 lines
391 B
Makefile
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
|
|
|