From 33e19e7d76d20fee1ae733788bff8a2871b99558 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Sun, 23 Nov 2025 11:48:46 -0800 Subject: [PATCH] add Makefile for basic build --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index aa522db..bf2837c 100644 --- a/Makefile +++ b/Makefile @@ -11,4 +11,7 @@ LDFLAGS := -fsanitize=address all: $(TARGET) $(TARGET): main.c - $(CC) $(CFLAGS) -o $(TARGET) $(LDFLAGS) main.c \ No newline at end of file + $(CC) $(CFLAGS) -o $(TARGET) $(LDFLAGS) main.c + +clean: + rm -f $(TARGET) \ No newline at end of file