diff options
author | Florent Villard <warly@mandriva.com> | 2002-03-01 21:26:34 +0000 |
---|---|---|
committer | Florent Villard <warly@mandriva.com> | 2002-03-01 21:26:34 +0000 |
commit | fb342bb519347a345ee99e4715e93965747bdc15 (patch) | |
tree | 180f41c53bd6b4326656a5408656d4cde59e927d /Makefile | |
parent | dc2ef3b96e0be532c7e51f8052b3d5c14828f0d3 (diff) | |
download | bootsplash-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-- | Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -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* |