From 83517a2775c953d676fb406dc2f96896b73d2c64 Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Tue, 8 Oct 2024 13:10:59 +0100 Subject: Update project name & valid args --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6dd9909..ed6b098 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Compiler options +# Compiler to options CC=gcc CFLAGS=-std=c17 -Wall -Werror -g @@ -8,14 +8,14 @@ bin=bin # Directives .PHONY: build -build: $(bin)/ctodo +build: $(bin)/tdo .PHONY: clean clean: -rm -r $(bin) $(obj) # Build executable -$(bin)/ctodo: $(bin) $(src)/main.c +$(bin)/tdo: $(bin) $(src)/main.c $(CC) $(CFLAGS) -o $@ $(filter-out $<,$^) # Make bin directory -- cgit