From 6c521cec36a71dd7193da9debb1129b4c041a3a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Asbj=C3=B8rn=20Sloth=20T=C3=B8nnesen?= Date: Sun, 16 Aug 2020 20:21:23 +0000 Subject: initial MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Asbjørn Sloth Tønnesen --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..31a2652 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +CFLAGS+=$(shell libpng-config --cflags) -g +LDFLAGS+=$(shell libpng-config --ldflags) +.PHONY: clean +owndisplay: owndisplay.o + $(CC) -o $@ $^ $(LDFLAGS) +clean: + rm -f owndisplay owndisplay.o -- cgit v1.2.1