From 4a33ca6b85013f69ad89418cac42ff86a0e3ea89 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 6 Aug 2019 09:18:14 -0400 Subject: add makefile since this produces two utilities --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile 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 -- cgit v1.2.1