summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-08-06 09:18:14 -0400
committerJakob Kaivo <jkk@ung.org>2019-08-06 09:18:14 -0400
commit4a33ca6b85013f69ad89418cac42ff86a0e3ea89 (patch)
tree5c74c62b1c30d1551940638795825b6d2e01fcd1
parent9254d971219c23e08769a32c3885e27ccdd7476f (diff)
add makefile since this produces two utilities
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..d7afdd1
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+.POSIX:
+
+all: echo printf
+
+printf: printf.c
+
+echo: printf
+ ln -s printf $@
+
+clean:
+ rm -f *.o echo printf