Fix make clean to remove the library and all the .d files

This commit is contained in:
Mark Haines 2016-05-23 16:35:34 +01:00
parent 502bd9e10e
commit aacf115468

View file

@ -95,9 +95,9 @@ clean:;
rm -rf $(RELEASE_OBJECTS) $(RELEASE_OBJECTS:.o=.d) \ rm -rf $(RELEASE_OBJECTS) $(RELEASE_OBJECTS:.o=.d) \
$(DEBUG_OBJECTS) $(DEBUG_OBJECTS:.o=.d) \ $(DEBUG_OBJECTS) $(DEBUG_OBJECTS:.o=.d) \
$(TEST_BINARIES) $(TEST_BINARIES:=.d) \ $(TEST_BINARIES) $(TEST_BINARIES:=.d) \
$(JS_OBJECTS) $(JS_OBJECTS:=.d) $(JS_TARGET) \ $(JS_OBJECTS) $(JS_OBJECTS:.bc=.d) $(JS_TARGET) \
$(JS_EXPORTED_FUNCTIONS) \ $(JS_EXPORTED_FUNCTIONS) \
$(TARGET) $(RELEASE_TARGET) $(DEBUG_TARGET)\
build_tests: $(TEST_BINARIES) build_tests: $(TEST_BINARIES)