From 37fc580bf085727866b083aa2fbb6316ef13dc44 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 10 Dec 2017 11:50:16 +0100 Subject: Simplify and change license to ISC MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..73e7fb2 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +.POSIX: + +CONFIGFILE = config.mk +include $(CONFIGFILE) + +all: learn-your-telephone-number + +learn-your-telephone-number: learn-your-telephone-number.o + $(CC) -o $@ $@.o $(LDFLAGS) + +clean: + -rm -f -- learn-your-telephone-number *.o + +.SUFFIXES: +.SUFFIXES: .o .c + +.PHONY: all install uninstall clean -- cgit v1.2.3-70-g09d2