aboutsummaryrefslogtreecommitdiff
path: root/c/cat/Makefile
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-12-10 00:39:16 +0100
committerThomas Voss <mail@thomasvoss.com> 2023-12-10 00:39:37 +0100
commit03f8544691a8de9f77a803fd8cd2eeadb919ec03 (patch)
tree4d3431d678b892cb057af72a982ac73d313d60f9 /c/cat/Makefile
Genesis commit
Diffstat (limited to 'c/cat/Makefile')
-rw-r--r--c/cat/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/c/cat/Makefile b/c/cat/Makefile
new file mode 100644
index 0000000..081ffd4
--- /dev/null
+++ b/c/cat/Makefile
@@ -0,0 +1,8 @@
+include ../base.mk
+
+all: cat
+cat: cat.c
+ $(CC) $(CFLAGS) -o $@ $<
+
+clean:
+ rm -f cat