summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b4fd267f..11913748 100644
--- a/Makefile
+++ b/Makefile
@@ -19,16 +19,20 @@ WIZ = common\
data\
po
+all:
+
+
# installs all the wizards...
install:
- 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
for l in $(WIZ); do \
$(MAKE) -C $$l $@; \
done
+ find ${prefix}/share/wizards -regex ".*\.wiz$$\|.*.pm$$\|.*\.sh$$" -exec \
+ perl -pi -e "s|__WIZ_HOME__|/usr/share/wizards|g" \{\} \;
+
clean:
$(MAKE) -C po $@