From a06ff64534815cbf702a3847a19443612d307b80 Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Fri, 30 Sep 2022 10:55:55 +0200 Subject: Changed rbmp to use blossom algorithm. --- blossom5-v2.05.src/Makefile | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 blossom5-v2.05.src/Makefile (limited to 'blossom5-v2.05.src/Makefile') diff --git a/blossom5-v2.05.src/Makefile b/blossom5-v2.05.src/Makefile new file mode 100644 index 0000000..da30258 --- /dev/null +++ b/blossom5-v2.05.src/Makefile @@ -0,0 +1,26 @@ +DIRS := . MinCost GEOM + +SOURCES := $(foreach dir, $(DIRS), $(wildcard $(dir)/*.cpp)) +OBJS := $(patsubst %.cpp, %.o, $(SOURCES)) + +CFLAGS := -O3 -D_NDEBUG +CXX ?= c++ +LIBS := +INCLUDES := +LIBDIR := + +# Add librt if the target platform is not Darwin (OS X) +ifneq ($(shell uname -s),Darwin) + LIBS += -lrt +endif + +all: blossom5 + +blossom5: ${OBJS} + $(CXX) $(CFLAGS) ${LIBDIR} -o $@ ${OBJS} ${LIBS} + +.cpp.o: + $(CXX) $(CFLAGS) ${INCLUDES} $< -c -o $@ + +clean: + rm -f ${OBJS} blossom5 -- cgit v1.2.3-70-g09d2