aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMark Haines <mjark@negativecurvature.net>2016-05-23 16:35:34 +0100
committerMark Haines <mjark@negativecurvature.net>2016-05-23 16:35:34 +0100
commitaacf1154684885d244182eb9cd68e429d72ee57a (patch)
treef9fe9f06bd404ffa4fd22c020a6c294440ccfc8f /Makefile
parent502bd9e10ea07a92c187963a4f987ab6c3b92163 (diff)
Fix make clean to remove the library and all the .d files
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files 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)