]> granicus.if.org Git - pdns/commitdiff
fix recursor Makefile
authorKees Monshouwer <mind04@monshouwer.org>
Mon, 23 Dec 2013 19:42:32 +0000 (20:42 +0100)
committermind04 <mind04@monshouwer.org>
Mon, 23 Dec 2013 20:03:48 +0000 (21:03 +0100)
thanks @zeha, @habbie

pdns/Makefile-recursor

index 58fde203742e463b8b4b5bedfe0e7141297c6487..3522e60d5520fccdef34626061cdc406ccaf3d02 100644 (file)
@@ -4,8 +4,8 @@ BINDIR=/usr/bin/
 SYSCONFDIR=/etc/powerdns/
 LOCALSTATEDIR=/var/run/
 OPTFLAGS?=-O3
-CXXFLAGS:= $(CXXFLAGS) -Iext/rapidjson/include -Iext/polarssl-1.3.2/include/polarssl -Wall $(OPTFLAGS) $(PROFILEFLAGS) $(ARCHFLAGS) -pthread
-CFLAGS:=$(CFLAGS) -Wall $(OPTFLAGS) $(PROFILEFLAGS) $(ARCHFLAGS) -pthread
+CXXFLAGS:= $(CXXFLAGS) -Iext/rapidjson/include -I$(CURDIR)/ext/polarssl-1.3.2/include -Wall $(OPTFLAGS) $(PROFILEFLAGS) $(ARCHFLAGS) -pthread
+CFLAGS:=$(CFLAGS) -Wall $(OPTFLAGS) $(PROFILEFLAGS) $(ARCHFLAGS) -I$(CURDIR)/ext/polarssl-1.3.2/include -pthread
 LDFLAGS:=$(LDFLAGS) $(ARCHFLAGS) -pthread
 
 LINKCC=$(CXX)
@@ -105,10 +105,10 @@ clean: binclean
        -rm -f dep *~ *.gcda *.gcno optional/*.gcda optional/*.gcno
 
 binclean:
-       -rm -f *.o  pdns_recursor rec_control optional/*.o build-stamp
+       -rm -f *.o  pdns_recursor rec_control optional/*.o build-stamp ext/polarssl-1.3.2/library/*.o
 
 dep:
-       $(CXX) $(CXXFLAGS) -MM -MG *.cc *.c *.hh > $@
+       $(CXX) $(CXXFLAGS) -MM -MG *.cc *.hh > $@
 
 -include dep