diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-08-06 09:18:14 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-08-06 09:18:14 -0400 |
commit | 4a33ca6b85013f69ad89418cac42ff86a0e3ea89 (patch) | |
tree | 5c74c62b1c30d1551940638795825b6d2e01fcd1 | |
parent | 9254d971219c23e08769a32c3885e27ccdd7476f (diff) |
add makefile since this produces two utilities
-rw-r--r-- | Makefile | 11 |
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 |