summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
author@syxhe <https://t.me/syxhe>2024-12-26 21:42:53 -0600
committer@syxhe <https://t.me/syxhe>2024-12-26 21:42:53 -0600
commit03c5fce0220d3e5d02d320f925a3b9401a397729 (patch)
treedb27acac8fceee17cace9fa05ddd24fa6fe23cf9 /src/Makefile
parentf7ded3958a7f3bea16e2c8be55f159f34a45ca61 (diff)
Put some notes down
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile
index f2f4bf7..d3798bb 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -20,7 +20,10 @@ BINARIES := main
20 20
21all: main 21all: main
22 22
23main: main.c 23main: main.o shared.o
24 24
25clean: 25main.o: main.c shared.h
26 rm -rvf $(BINARIES) \ No newline at end of file 26shared.o: shared.c shared.h
27
28c clean: # huh, didn't think that would work
29 rm -rvf $(BINARIES) $(wildcard *.o) \ No newline at end of file