diff options
author | Mark Haines <mjark@negativecurvature.net> | 2016-05-23 16:35:34 +0100 |
---|---|---|
committer | Mark Haines <mjark@negativecurvature.net> | 2016-05-23 16:35:34 +0100 |
commit | aacf1154684885d244182eb9cd68e429d72ee57a (patch) | |
tree | f9fe9f06bd404ffa4fd22c020a6c294440ccfc8f /Makefile | |
parent | 502bd9e10ea07a92c187963a4f987ab6c3b92163 (diff) |
Fix make clean to remove the library and all the .d files
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |