From 79cca9245429e7325bd1819995fd6b749a45e6a6 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Wed, 29 May 2013 17:23:18 +0200 Subject: Initial import --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3-54-g00ecf