diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4d83e8c --- /dev/null +++ b/Makefile @@ -0,0 +1,28 @@ +# +# Copyright (c) 2026, Chloe M. +# Provided under the BSD-3 clause.`` +# + +CFILES = $(shell find . -name "*.c") +OFILES = $(CFILES:.c=.o) +DFILES = $(CFILES:.c=.d) + +CC = \ + gcc + +CFLAGS = \ + -Wall \ + -pedantic \ + -MMD + +.PHONY: all +all: rdar + +.PHONY: rdar +rdar: $(OFILES) + $(CC) $^ -o $@ + +-include $(DFILES) +%.o: %.c + $(CC) -c $(CFLAGS) $< -o $@ + |
