diff options
author | David <dbphillipsnz@gmail.com> | 2014-05-29 15:42:42 +1200 |
---|---|---|
committer | David <dbphillipsnz@gmail.com> | 2014-05-29 16:11:36 +1200 |
commit | bda352d5d9f6230ae7387931d27e32d6d8ea7e62 (patch) | |
tree | 8a6e7245e860729fa192ea160c7a8009420fdacc /Makefile | |
parent | 07b159aa218d2291a4c3858c38b120ec102e4d98 (diff) | |
download | paramano-bda352d5d9f6230ae7387931d27e32d6d8ea7e62.tar.xz |
Makefile install fix
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -77,7 +77,7 @@ trayfreq_set_SOURCES = trayfreq_set/trayfreq_set.c \ ######################################################################## # Make entire suite -all: trayfreq trayfreq-set lang +all: trayfreq trayfreq-set lang trayfreq.conf ######################################################################## @@ -124,7 +124,7 @@ lang: ######################################################################## # Prepare template config file -config: +trayfreq.conf: sed -e 's:SHAREDIR:$(SHAREDIR):g' \ -e 's:TRAYFREQ_CONF:$(TRAYFREQ_CONF):g' \ trayfreq.conf.src > trayfreq.conf @@ -141,16 +141,16 @@ clean: ######################################################################## # Install entire suite install: - install -Dm 755 data/themes $(DESTDIR)/usr/share/trayfreq/ + install -Dm 755 themes $(DESTDIR)/$(SHAREDIR)/trayfreq/themes - install -Dm 644 lc/fr.mo $(DESTDIR)$(LOCALE_DIR)/fr/LC_MESSAGES/trayfreq.mo + install -Dm 644 lc/fr.mo $(DESTDIR)/$(LOCALEDIR)/fr/LC_MESSAGES/trayfreq.mo - install -Dm 644 data/trayfreq.conf $(DESTDIR)/etc/trayfreq.conf - install -Dm 644 data/trayfreq.desktop $(DESTDIR)/etc/xdg/autostart/trayfreq.desktop + install -Dm 644 trayfreq.conf $(DESTDIR)/etc/trayfreq.conf + install -Dm 644 trayfreq.desktop $(DESTDIR)/etc/xdg/autostart/trayfreq.desktop install -Dm 755 trayfreq $(DESTDIR)/$(BINDIR)/trayfreq install -Dm 755 trayfreq-set $(DESTDIR)/$(BINDIR)/trayfreq-set - ln -s ../licenses/common/GLPv3/license.txt $(DESTDIR)/usr/share/trayfreq/LICENCE - ln -s ../../../etc/trayfreq.conf $(DESTDIR)/usr/share/trayfreq/trayfreq.conf + ln -s ../licenses/common/GLPv3/license.txt $(DESTDIR)/$(SHAREDIR)/trayfreq/LICENCE + ln -s ../../../etc/trayfreq.conf $(DESTDIR)/$(SHAREDIR)/trayfreq/trayfreq.conf ######################################################################## |