aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBlake Romero <blake@blkrom.com>2024-10-08 13:10:59 +0100
committerBlake Romero <blake@blkrom.com>2024-10-30 10:16:05 +0000
commit83517a2775c953d676fb406dc2f96896b73d2c64 (patch)
tree8c3aab8e21e50cb4675ab7cc7a8b90b62add22a2 /Makefile
parent31392b385c3432f8ab29641ea22ee9786f382aa8 (diff)
Update project name & valid args
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
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