From e45ce6f5d8e6fbfcb651dc859186ce8e4bb71e4a Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Thu, 21 Aug 2025 21:52:27 +0200 Subject: Makefile: show also the build command of TARGET --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit v1.2.3