summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorIan Moffett <ian@mirocom.org>2026-05-23 01:34:20 -0400
committerIan Moffett <ian@mirocom.org>2026-05-23 01:34:20 -0400
commita371b6ebb05b15a36a5ed2f39105c20e0cd02787 (patch)
tree192d410d69d85ec528e239d8aaf8d873b3635044 /Makefile
parentc5f8f95059504748f07e0d3ca9d978669622428c (diff)
build: Add clean target
Signed-off-by: Ian Moffett <ian@mirocom.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5d497f9..47dd566 100644
--- a/Makefile
+++ b/Makefile
@@ -23,3 +23,7 @@ cescal: $(OFILES)
-include $(DFILES)
%.o: %.c
$(CC) -c $< $(CFLAGS) -o $@
+
+.PHONY: clean
+clean:
+ rm -f $(OFILES) $(DFILES)