summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile28
1 files changed, 0 insertions, 28 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 4d83e8c..0000000
--- a/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-#
-# 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 $@
-