From 291945f30496d2c41960b98c75e61871358f40a2 Mon Sep 17 00:00:00 2001 From: Chloe M Date: Sat, 15 Aug 2026 22:18:28 -0500 Subject: build: Use bop instead of make Signed-off-by: Chloe M --- Makefile | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 Makefile (limited to 'Makefile') 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 $@ - -- cgit v1.2.3