diff options
| 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 |
| commit | 03c5fce0220d3e5d02d320f925a3b9401a397729 (patch) | |
| tree | db27acac8fceee17cace9fa05ddd24fa6fe23cf9 /src/Makefile | |
| parent | f7ded3958a7f3bea16e2c8be55f159f34a45ca61 (diff) | |
Put some notes down
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 9 |
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 | ||
| 21 | all: main | 21 | all: main |
| 22 | 22 | ||
| 23 | main: main.c | 23 | main: main.o shared.o |
| 24 | 24 | ||
| 25 | clean: | 25 | main.o: main.c shared.h |
| 26 | rm -rvf $(BINARIES) \ No newline at end of file | 26 | shared.o: shared.c shared.h |
| 27 | |||
| 28 | c clean: # huh, didn't think that would work | ||
| 29 | rm -rvf $(BINARIES) $(wildcard *.o) \ No newline at end of file | ||
