aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 68ec3a2..c84f418 100644
--- a/Makefile
+++ b/Makefile
@@ -8,6 +8,7 @@ SBINDIR = $(DESTDIR)/usr/sbin
XBINDIR = $(DESTDIR)/usr/X11R6/bin
LOCALEDIR = $(DESTDIR)/usr/share/locale
ICONSDIR = $(DESTDIR)/usr/lib/libDrakX/icons/
+PMSDIR=$(DESTDIR)/usr/lib/libDrakX
CFLAGS = -Wall -g
NAME = transfugdrake
@@ -40,7 +41,8 @@ install_old: transfug_oe
for d in $(SUBDIRS); do ( cd $$d ; make $@ ) ; done
install:
- install -d $(SBINDIR) $(ICONSDIR)
+ install -d $(SBINDIR) $(ICONSDIR) $(PMSDIR)
install -m755 $(NAME) $(SBINDIR)
+ install -m644 $(NAME).pm $(PMSDIR)
install -m644 $(wildcard data/icons/*.png) $(ICONSDIR)
for d in $(SUBDIRS); do make -C $$d $@; done