From aacf1154684885d244182eb9cd68e429d72ee57a Mon Sep 17 00:00:00 2001 From: Mark Haines Date: Mon, 23 May 2016 16:35:34 +0100 Subject: Fix make clean to remove the library and all the .d files --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e05ea57..1950016 100644 --- a/Makefile +++ b/Makefile @@ -95,9 +95,9 @@ clean:; rm -rf $(RELEASE_OBJECTS) $(RELEASE_OBJECTS:.o=.d) \ $(DEBUG_OBJECTS) $(DEBUG_OBJECTS:.o=.d) \ $(TEST_BINARIES) $(TEST_BINARIES:=.d) \ - $(JS_OBJECTS) $(JS_OBJECTS:=.d) $(JS_TARGET) \ + $(JS_OBJECTS) $(JS_OBJECTS:.bc=.d) $(JS_TARGET) \ $(JS_EXPORTED_FUNCTIONS) \ - $(TARGET) + $(RELEASE_TARGET) $(DEBUG_TARGET)\ build_tests: $(TEST_BINARIES) -- cgit v1.2.3