summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2025-08-21 21:52:27 +0200
committerEkaitz Zarraga <ekaitz@elenq.tech>2025-08-21 21:52:27 +0200
commite45ce6f5d8e6fbfcb651dc859186ce8e4bb71e4a (patch)
tree1a58fba82650ce9d49e24fcd147a757ee0d47047
parent517805980b106b5ae44e74f8a9b58e76c09c3124 (diff)
Makefile: show also the build command of TARGET
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 651de42..aecf32a 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ TEST_LOGS = $(addsuffix .log, $(TEST_FILES))
all: $(TARGET)
$(TARGET): $(OBJ) src/main.c
- @$(CC) $(CFLAGS) $(OBJ) src/main.c -o $(TARGET)
+ $(CC) $(CFLAGS) $(OBJ) src/main.c -o $(TARGET)
$(OBJ): $(OBJDIR)/%.o: src/%.c $(HEADERS)
mkdir -p out