summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorArnaud Desmons <adesmons@mandriva.com>2002-08-13 15:46:00 +0000
committerArnaud Desmons <adesmons@mandriva.com>2002-08-13 15:46:00 +0000
commite204e6101798ec8ccf7ed825e0299a4d4d8c181f (patch)
tree59db658f997eb50a5ed60df216869b7eb8684e38 /Makefile
parent7766bee9c30f4a3580406846a8113c8786ecf1f5 (diff)
downloaddrakwizard-e204e6101798ec8ccf7ed825e0299a4d4d8c181f.tar
drakwizard-e204e6101798ec8ccf7ed825e0299a4d4d8c181f.tar.gz
drakwizard-e204e6101798ec8ccf7ed825e0299a4d4d8c181f.tar.bz2
drakwizard-e204e6101798ec8ccf7ed825e0299a4d4d8c181f.tar.xz
drakwizard-e204e6101798ec8ccf7ed825e0299a4d4d8c181f.zip
cd .. need to be redone each time
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 9848cbbc..e6b4d87a 100644
--- a/Makefile
+++ b/Makefile
@@ -26,7 +26,7 @@ install:
mkdir -p ${prefix}/sbin
install -p drakwizard.pl ${prefix}/sbin/drakwizard
for l in $(WIZ); do \
- $(MAKE) -C $$l $@
+ $(MAKE) -C $$l $@; \
done
clean:
@@ -34,7 +34,8 @@ clean:
rm -f *~
tar: clean
- cd .. ; ln wizard_perl $(NAME); tar cf - $(NAME) | bzip2 -9 >$(TAR)
+ cd ..; cp -rf wizard_perl $(NAME)
+ cd ..; tar cf - $(NAME) | bzip2 -9 > $(TAR)
rpm: tar
cp -f ../$(TAR) $(RPM)/SOURCES
@@ -48,6 +49,6 @@ clean_test:
test: clean_test
mkdir test
cp -r $(WIZ) test
- cp -f Wizard.dtd Makefile drakwizard.pl drakwizard.spec test
+ cp Wizard.dtd Makefile drakwizard.pl drakwizard.spec test
find test -regex ".*\.wiz$$\|.*.pm$$" -exec \
perl -pi -e "s|__WIZ_HOME__|$(PWD)/test|g" \{\} \;