diff options
author | Christian Hesse <mail@eworm.de> | 2013-08-21 13:48:07 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2013-08-21 13:48:07 +0200 |
commit | 5a12f7a502f0b3b3bfbae24b75a0d53e72c53d0e (patch) | |
tree | 359ce3fd62eb93ff8f683c9164f0ac8fb6a1c95a /Makefile | |
parent | 6633c129a271b45dab908816293668e4077f17fc (diff) | |
download | cqrlogo-5a12f7a502f0b3b3bfbae24b75a0d53e72c53d0e.tar.gz cqrlogo-5a12f7a502f0b3b3bfbae24b75a0d53e72c53d0e.tar.zst |
split install to install-bin and install-doc
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -32,8 +32,12 @@ cqrlogo.png: cqrlogo QUERY_STRING='scale=4' \ ./cqrlogo | $(SED) '1,/^$$/d' > cqrlogo.png -install: cqrlogo README.html cqrlogo.png +install: install-bin install-doc + +install-bin: cqrlogo $(INSTALL) -D -m0755 cqrlogo $(DESTDIR)/usr/share/webapps/cqrlogo/cqrlogo + +install-doc: README.html cqrlogo.png $(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 |