diff options
author | Christian Hesse <mail@eworm.de> | 2013-05-29 17:23:18 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2013-05-29 17:23:18 +0200 |
commit | 79cca9245429e7325bd1819995fd6b749a45e6a6 (patch) | |
tree | 4df352626a31df09309cf0b7303c46b0020f5a83 /Makefile | |
parent | 7f53b8bbefe27ad1b61179c50b4de8fc13e528a7 (diff) | |
download | cqrlogo-79cca9245429e7325bd1819995fd6b749a45e6a6.tar.gz cqrlogo-79cca9245429e7325bd1819995fd6b749a45e6a6.tar.zst |
Initial import0.1.0
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
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 |