You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
446 B
29 lines
446 B
6 years ago
|
CC = clang
|
||
|
CXX = clang++
|
||
|
|
||
|
CPPFLAGS = -Wall -g -fPIC -std=c++11 -O2
|
||
|
|
||
|
OBJS = fastcluster.o test.o
|
||
|
DEPS := $(OBJS:.o=.d)
|
||
|
|
||
|
all: libfastcluster.so
|
||
|
|
||
|
test: libfastcluster.so test.o
|
||
|
$(CXX) -g -L. -lfastcluster -o $@ $+
|
||
|
|
||
|
valgrind: test
|
||
|
valgrind --leak-check=full ./test
|
||
|
|
||
|
|
||
|
libfastcluster.so: fastcluster.o
|
||
|
$(CXX) -g -shared -o $@ $+
|
||
|
|
||
|
%.o: %.cpp
|
||
|
$(CXX) $(CPPFLAGS) -MMD -c $*.cpp
|
||
|
|
||
|
clean:
|
||
|
rm -f $(OBJS) $(DEPS) libfastcluster.so test
|
||
|
|
||
|
|
||
|
-include $(DEPS)
|