changed make rule name

This commit is contained in:
Karma Riuk
2025-06-29 10:13:27 +02:00
parent 4771aa4f10
commit 65792464bb

View File

@ -31,7 +31,7 @@ TEST_TARGET := $(BIN_DIR)/monkey_tests
# -------------------------------------------------------------------
# Toplevel rules
# -------------------------------------------------------------------
.PHONY: all clean monkey tests
.PHONY: all clean run tests
all: $(TARGET) $(TEST_TARGET)
clean:
@ -40,7 +40,7 @@ clean:
# -------------------------------------------------------------------
# Build & run
# -------------------------------------------------------------------
monkey: $(TARGET)
run: $(TARGET)
@$(TARGET)
tests: $(TEST_TARGET)