aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorFlorent Villard <warly@mandriva.com>2002-03-01 21:26:34 +0000
committerFlorent Villard <warly@mandriva.com>2002-03-01 21:26:34 +0000
commitfb342bb519347a345ee99e4715e93965747bdc15 (patch)
tree180f41c53bd6b4326656a5408656d4cde59e927d /Makefile
parentdc2ef3b96e0be532c7e51f8052b3d5c14828f0d3 (diff)
downloadbootsplash-fb342bb519347a345ee99e4715e93965747bdc15.tar
bootsplash-fb342bb519347a345ee99e4715e93965747bdc15.tar.gz
bootsplash-fb342bb519347a345ee99e4715e93965747bdc15.tar.bz2
bootsplash-fb342bb519347a345ee99e4715e93965747bdc15.tar.xz
bootsplash-fb342bb519347a345ee99e4715e93965747bdc15.zip
move config to /etc so that rc.sysinit see themV1_3_5_1mdk
update Mandrake themes images and config
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index e59b09a..ed1a3b0 100644
--- a/Makefile
+++ b/Makefile
@@ -4,10 +4,12 @@ RELEASE := $(shell sed -n 's/%define release //p' < $(NAME).spec)
RELTAG := $(shell echo "V$(VERSION)_$(RELEASE)" | tr -- '-.' '__')
SUBDIRS=scripts fb
-DATADIRS=themes
+DATADIRS=themes/data/
+CONFIGDIRS=themes/config/
prefix=/
sharedir=/usr/share
+configdir=/etc
all: check
@@ -15,9 +17,11 @@ check:
@for i in $(SUBDIRS);do make -C $$i check;done
install:
- @mkdir -p $(prefix)$(sharedir)/bootsplash/
+ @mkdir -p $(prefix)$(sharedir)/bootsplash/themes/
+ @mkdir -p $(prefix)$(configdir)/bootsplash/themes/
@for i in $(SUBDIRS);do make -C $$i install;done
- @for i in $(DATADIRS);do cp -a $$i $(prefix)$(sharedir)/bootsplash/;done
+ @for i in $(DATADIRS);do cp -a $$i/* $(prefix)$(sharedir)/bootsplash/themes/;done
+ @for i in $(CONFIGDIRS);do cp -a $$i/* $(prefix)$(configdir)/bootsplash/themes/;done
dis: clean
rm -rf $(NAME)-$(VERSION) ../$(NAME)-$(VERSION).tar*