diff options
Diffstat (limited to '2021/day2/Makefile')
| -rw-r--r-- | 2021/day2/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2021/day2/Makefile b/2021/day2/Makefile new file mode 100644 index 0000000..6718c4c --- /dev/null +++ b/2021/day2/Makefile | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | src = $(wildcard *.c) | ||
| 2 | obj = $(src:.c=.o) | ||
| 3 | |||
| 4 | LDFLAGS = -Wall -g | ||
| 5 | |||
| 6 | pilot: $(obj) | ||
| 7 | $(CC) -o $@ $^ $(LDFLAGS) | ||
| 8 | |||
| 9 | .PHONY: clean | ||
| 10 | clean: | ||
| 11 | rm -f $(obj) pilot | ||
