aboutsummaryrefslogtreecommitdiff
path: root/c/cat/Makefile
diff options
context:
space:
mode:
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