diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -21,7 +21,7 @@ WIZ = common\ # installs all the wizards... install: - find -regex ".*\.wiz$$\|.*.pm$$" -exec \ + find -regex ".*\.wiz$$\|.*.pm$$\|.*\.sh$$" -exec \ perl -pi -e "s|__WIZ_HOME__|/usr/share/wizards|g" \{\} \; mkdir -p ${prefix}/sbin install -p drakwizard.pl ${prefix}/sbin/drakwizard @@ -34,8 +34,12 @@ clean: rm -f *~ tar: clean +<<<<<<< Makefile + cd .. ; ln -s wizard_perl $(NAME); tar cf - $(NAME) | bzip2 -9 >$(TAR) +======= cd ..; cp -rf wizard_perl $(NAME) cd ..; tar cf - $(NAME) | bzip2 -9 > $(TAR) +>>>>>>> 1.7 rpm: tar cp -f ../$(TAR) $(RPM)/SOURCES @@ -50,5 +54,5 @@ test: clean_test mkdir test cp -r $(WIZ) test cp Wizard.dtd Makefile drakwizard.pl drakwizard.spec test - find test -regex ".*\.wiz$$\|.*.pm$$" -exec \ + find test -regex ".*\.wiz$$\|.*\.pm$$\|.*\.sh$$" -exec \ perl -pi -e "s|__WIZ_HOME__|$(PWD)/test|g" \{\} \; |