mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-23 20:43:53 +08:00
29 lines
446 B
Makefile
29 lines
446 B
Makefile
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)
|