1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-11-14 04:53:02 +01:00

Makefile: be less aggressive when cleaning

This commit is contained in:
Ansa89 2015-03-21 19:31:00 +01:00
parent 59b16f7760
commit dfbb1338a5

View File

@ -68,7 +68,7 @@ $(BUILD_DIR)/%.o: $(SRC_DIR)/%.c
@$(CC) -MM $(CFLAGS) $(SRC_DIR)/$*.c > $(BUILD_DIR)/$*.d
clean:
rm -rf $(BUILD_DIR)
rm -f $(BUILD_DIR)/*.d $(BUILD_DIR)/*.o $(BUILD_DIR)/toxic
-include $(BUILD_DIR)/$(OBJ:.o=.d)