aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Alex Alexander <alex.alexander@gmail.com>2010-03-14 22:12:51 +0800
committerGravatar Mason Larobina <mason.larobina@gmail.com>2010-03-15 03:17:57 +0800
commitd621cda943e972b2a2a0a8c9a6febb30c6df94f4 (patch)
treeba6c3b3c40c743538f56d3725ace8fbd8fca4a85 /Makefile
parent3894e058aba34c69d26f36b1dec4df92fe360567 (diff)
Install docs into DOCDIR (default $(INSTALLDIR)/share/uzbl/docs/)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 6526ce6..7d1b386 100644
--- a/Makefile
+++ b/Makefile
@@ -31,6 +31,7 @@ uzbl-browser: uzbl-core
# RUN_PREFIX : what the prefix is when the software is run. usually the same as PREFIX
PREFIX?=/usr/local
INSTALLDIR?=$(DESTDIR)$(PREFIX)
+DOCDIR?=$(INSTALLDIR)/share/uzbl/docs
RUN_PREFIX?=$(PREFIX)
# the 'tests' target can never be up to date
@@ -88,14 +89,14 @@ install: install-uzbl-core install-uzbl-browser install-uzbl-tabbed
install-uzbl-core: all
install -d $(INSTALLDIR)/bin
- install -d $(INSTALLDIR)/share/uzbl/docs
+ install -d $(DOCDIR)
install -d $(INSTALLDIR)/share/uzbl/examples
- cp -rp docs $(INSTALLDIR)/share/uzbl/
- cp -rp src/config.h $(INSTALLDIR)/share/uzbl/docs/
+ cp -rp docs/* $(DOCDIR)/
+ cp -rp src/config.h $(DOCDIR)/
cp -rp examples $(INSTALLDIR)/share/uzbl/
install -m755 uzbl-core $(INSTALLDIR)/bin/uzbl-core
- install -m644 AUTHORS $(INSTALLDIR)/share/uzbl/docs
- install -m644 README $(INSTALLDIR)/share/uzbl/docs
+ install -m644 AUTHORS $(DOCDIR)
+ install -m644 README $(DOCDIR)
sed -i 's#^set prefix.*=.*#set prefix = $(RUN_PREFIX)#' $(INSTALLDIR)/share/uzbl/examples/config/config
install-uzbl-browser: