summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAsbjørn Sloth Tønnesen <ast@2e8.dk>2020-08-16 20:21:23 +0000
committerAsbjørn Sloth Tønnesen <ast@2e8.dk>2020-08-16 20:42:19 +0000
commit6c521cec36a71dd7193da9debb1129b4c041a3a7 (patch)
treed8e3d4c436411356d1dd8c6e4b2248da36344ffe /Makefile
parent57362288f0403d1d80247dc4cf3f69f3f3b100c3 (diff)
downloadbornhack2020-pixelflut-client-6c521cec36a71dd7193da9debb1129b4c041a3a7.tar.gz
bornhack2020-pixelflut-client-6c521cec36a71dd7193da9debb1129b4c041a3a7.tar.xz
bornhack2020-pixelflut-client-6c521cec36a71dd7193da9debb1129b4c041a3a7.zip
initial
Signed-off-by: Asbjørn Sloth Tønnesen <ast@2e8.dk>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
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