summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorportix <none@none>2012-07-19 00:09:18 +0200
committerportix <none@none>2012-07-19 00:09:18 +0200
commit2c2c2ac95fa9863919e58a3dff87c08306d3eb7b (patch)
tree8ea53a2801dcba8a1ed161ca6c70a260ea642d90 /Makefile
parent5ef8d6b90327cea0b5188b1a373497f9a3ce4e3f (diff)
downloaddwb-2c2c2ac95fa9863919e58a3dff87c08306d3eb7b.zip
Adding extensions formfiller, perdomainsettings, requestpolicy and userscripts
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 8 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 9166b279..0367a974 100644
--- a/Makefile
+++ b/Makefile
@@ -41,14 +41,19 @@ install-data: all
install -m 644 $(SHAREDIR)/dwb.png $(DESTDIR)$(DATADIR)/pixmaps/dwb.png
install -d $(DESTDIR)$(DATADIR)/applications
install -m 644 $(SHAREDIR)/dwb.desktop $(DESTDIR)$(DATADIR)/applications/dwb.desktop
+ @# Hints
+ install -d $(DESTDIR)$(DATADIR)/$(REAL_NAME)/$(JSDIR)
+ install -m 644 $(JSDIR)/$(HINT_SCRIPT) $(DESTDIR)$(DATADIR)/$(REAL_NAME)/$(JSDIR)/$(HINT_SCRIPT)
@# Libjs
install -d $(DESTDIR)$(DATADIR)/$(REAL_NAME)/$(LIBJSDIR)
for file in $(LIBJSDIR)/*; do \
install -m 644 $$file $(DESTDIR)$(DATADIR)/$(REAL_NAME)/$$file; \
done
- @# Hints
- install -d $(DESTDIR)$(DATADIR)/$(REAL_NAME)/$(JSDIR)
- install -m 644 $(JSDIR)/$(HINT_SCRIPT) $(DESTDIR)$(DATADIR)/$(REAL_NAME)/$(JSDIR)/$(HINT_SCRIPT)
+ @#Extensions
+ install -d $(DESTDIR)$(DATADIR)/$(REAL_NAME)/$(EXTENSIONDIR)
+ for file in $(EXTENSIONDIR)/*; do \
+ install -m 644 $$file $(DESTDIR)$(DATADIR)/$(REAL_NAME)/$$file; \
+ done
uninstall: uninstall-man uninstall-data
@echo "Removing executable from $(subst //,/,$(DESTDIR)$(BINDIR))"