summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Richard <johnny@johnnyrichard.com>2023-04-16 01:05:16 +0200
committerJohnny Richard <johnny@johnnyrichard.com>2023-04-16 01:05:16 +0200
commite618a733c0a98d624922ab005a7cf31ff4cbb109 (patch)
treea30544c44297de1337d905cbedf8987621bda7c7
parentbf2c6f765db1b349d5bd5ce98631144f9cab654a (diff)
build: Rename make target clear to clean
Signed-off-by: Johnny Richard <johnny@johnnyrichard.com>
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f2aa236..5ff8463 100644
--- a/Makefile
+++ b/Makefile
@@ -15,8 +15,8 @@ $(TARGET): $(BUILD_DIR) $(OBJS)
$(BUILD_DIR):
@mkdir -p $@
-.PHONY: clear
-clear:
+.PHONY: clean
+clean:
@rm -rf $(BUILD_DIR) $(TARGET)
$(BUILD_DIR)/%.o: $(SRC_DIR)/%.c