From 63b2c2f5ccaf108af733d8aa9f9ea318fd0abc81 Mon Sep 17 00:00:00 2001 From: Damiano Boppart Date: Tue, 18 Dec 2018 14:06:13 +0100 Subject: [PATCH] Fix clean target, and library search paths --- Makefile | 2 ++ Makefile.conf | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b86e080..90d8bf9 100644 --- a/Makefile +++ b/Makefile @@ -53,6 +53,8 @@ $(TARGET): $(WITHOUT_TESTS) .PHONY: clean clean: rm -f $(TARGET) $(OBJECTS) *.a test_adapter test_library lib + rm -rf test_adapter.dSYM + rm -rf test_library.dSYM .PHONY: distclean distclean: clean diff --git a/Makefile.conf b/Makefile.conf index f49b165..50d2386 100644 --- a/Makefile.conf +++ b/Makefile.conf @@ -14,7 +14,7 @@ PREFIX=$(HOME) ######### C and C++ ######### -LDFLAGS=$(ENGINE_LIB) +LDFLAGS=$(ENGINE_LIB) -L. LDLIBS=-lstdc++ -lpEpEngine -lpEpAdapter