aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.com>2007-09-19 18:26:34 +0000
committerOlivier Blin <oblin@mandriva.com>2007-09-19 18:26:34 +0000
commitdfaa86767d31dbf1635ac3647751e2be1ba91f5e (patch)
tree231c39ae34ee32ea68cba4b25e6cfcdf32363e9a /Makefile
parent6e03fb54877c94cdf63d56bc0edaa0ee2cefb78b (diff)
downloadtransfugdrake-dfaa86767d31dbf1635ac3647751e2be1ba91f5e.tar
transfugdrake-dfaa86767d31dbf1635ac3647751e2be1ba91f5e.tar.gz
transfugdrake-dfaa86767d31dbf1635ac3647751e2be1ba91f5e.tar.bz2
transfugdrake-dfaa86767d31dbf1635ac3647751e2be1ba91f5e.tar.xz
transfugdrake-dfaa86767d31dbf1635ac3647751e2be1ba91f5e.zip
split some of transfugdrake code in a module (to be used in userdrake)
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