Makefile clean target corrected

This commit is contained in:
Patrick Lipka 2021-12-10 09:27:34 +01:00
parent 38dfaa9c7b
commit 22f7902b45
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ makedir:
all: $(BIN_PATH)/tt all: $(BIN_PATH)/tt
clean: clean:
@rm -rf $(SRC)/*.o @rm -rf $(SRC_PATH)/*.o
@rm -rf $(BIN)/tt @rm -rf $(BIN_PATH)/tt
.PHONY: makedir clean .PHONY: makedir clean