From 9ba1fbb9b0c0ed5fd11398da7c895f900aff2d27 Mon Sep 17 00:00:00 2001 From: Chloe M Date: Mon, 27 Jul 2026 20:24:14 -0400 Subject: initial commit Signed-off-by: Chloe M --- Makefile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 $@ + -- cgit v1.2.3