From 06474e536f1f2936234e61692f37e94e570c1667 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 16 Jul 2013 11:14:15 +0200 Subject: clean up Makefile and generate documentation --- Makefile | 19 ++++++++++++++++--- cqrlogo.png | Bin 498 -> 0 bytes 2 files changed, 16 insertions(+), 3 deletions(-) delete mode 100644 cqrlogo.png diff --git a/Makefile b/Makefile index 2113417..2a5c737 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ # cqrlogo - CGI QR-Code logo for web services CC := gcc +MD := markdown INSTALL := install CP := cp RM := rm @@ -14,16 +15,28 @@ CFLAGS += $(shell pkg-config --cflags --libs libpng) \ $(shell pkg-config --cflags --libs libqrencode) VERSION = $(shell git describe --tags --long) -all: cqrlogo.c config.h +all: cqrlogo README.html cqrlogo.png + +cqrlogo: config.h $(CC) $(CFLAGS) -o cqrlogo cqrlogo.c \ -DVERSION="\"$(VERSION)\"" config.h: $(CP) config.def.h config.h -install: +README.html: + $(MD) README.md > README.html + +cqrlogo.png: cqrlogo + SERVER_NAME="github.com" HTTP_REFERER="https://github.com/eworm-de/cqrlogo" \ + QUERY_STRING='scale=4' \ + ./cqrlogo | $(SED) '1,/^$$/d' > cqrlogo.png + +install: cqrlogo README.html cqrlogo.png $(INSTALL) -D -m0755 cqrlogo $(DESTDIR)/usr/share/webapps/cqrlogo/cqrlogo $(INSTALL) -D -m0644 README.md $(DESTDIR)/usr/share/doc/cqrlogo/README.md + $(INSTALL) -D -m0644 README.html $(DESTDIR)/usr/share/doc/cqrlogo/README.html + $(INSTALL) -D -m0644 cqrlogo.png $(DESTDIR)/usr/share/doc/cqrlogo/cqrlogo.png check: $(eval SERVER := www.eworm.de) @@ -117,4 +130,4 @@ check: $(GREP) -e '^This QR Code has been stolen from https://eworm.net/!$$' clean: - $(RM) -f *.o *~ check.png cqrlogo + $(RM) -f *.o *~ *.png cqrlogo diff --git a/cqrlogo.png b/cqrlogo.png deleted file mode 100644 index 82991ca..0000000 Binary files a/cqrlogo.png and /dev/null differ -- cgit v1.2.3-54-g00ecf