aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2013-05-29 17:23:18 +0200
committerGravatar Christian Hesse <mail@eworm.de>2013-05-29 17:23:18 +0200
commit79cca9245429e7325bd1819995fd6b749a45e6a6 (patch)
tree4df352626a31df09309cf0b7303c46b0020f5a83 /Makefile
parent7f53b8bbefe27ad1b61179c50b4de8fc13e528a7 (diff)
downloadcqrlogo-79cca9245429e7325bd1819995fd6b749a45e6a6.tar.gz
cqrlogo-79cca9245429e7325bd1819995fd6b749a45e6a6.tar.zst
Initial import0.1.0
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..4c67769
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+# cqrlogo - CGI QR-Code logo for web services
+
+CC := gcc
+CFLAGS += $(shell pkg-config --cflags --libs gdk-pixbuf-2.0) \
+ $(shell pkg-config --cflags --libs libqrencode)
+
+all: cqrlogo.c
+ $(CC) $(CFLAGS) -o cqrlogo cqrlogo.c
+
+clean:
+ /bin/rm -f *.o *~ cqrlogo