summaryrefslogtreecommitdiffstats
path: root/common/Makefile
diff options
context:
space:
mode:
authorArnaud Desmons <adesmons@mandriva.com>2002-08-01 08:26:24 +0000
committerArnaud Desmons <adesmons@mandriva.com>2002-08-01 08:26:24 +0000
commit7b7675d18721212b7431ad00ffe5b4fd75f93fd4 (patch)
treeaec25f07a1d281b5c815dd38beb5a44e3a36e8b9 /common/Makefile
parent8ce4083085a6ef59b4b9f8e11b3bb2285e3aed4d (diff)
downloaddrakwizard-7b7675d18721212b7431ad00ffe5b4fd75f93fd4.tar
drakwizard-7b7675d18721212b7431ad00ffe5b4fd75f93fd4.tar.gz
drakwizard-7b7675d18721212b7431ad00ffe5b4fd75f93fd4.tar.bz2
drakwizard-7b7675d18721212b7431ad00ffe5b4fd75f93fd4.tar.xz
drakwizard-7b7675d18721212b7431ad00ffe5b4fd75f93fd4.zip
added install of perl modules
Diffstat (limited to 'common/Makefile')
-rw-r--r--common/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/common/Makefile b/common/Makefile
new file mode 100644
index 00000000..d11f37e8
--- /dev/null
+++ b/common/Makefile
@@ -0,0 +1,14 @@
+
+install2:
+ su -c 'make install'
+
+install:
+ mkdir -p --mode=u=rwx,g=rx,o=rx ${prefix}/share/wizards
+ mkdir -p --mode=u=rwx,g=rx,o=rx ${prefix}/share/wizards/common
+ mkdir -p --mode=u=rwx,g=rx,o=rx ${prefix}/share/wizards/common/images
+ mkdir -p --mode=u=rwx,g=rx,o=rx ${prefix}/share/wizards/common/scripts
+ install --mode=u=rw,g=r,o=r -p images/*.gif ${prefix}/share/wizards/common/images
+ install --mode=u=rwx,g=rx,o=rx -p scripts/*.sh ${prefix}/share/wizards/common/scripts
+ install --mode=u=rw,g=r,o=r -p scripts/*.pm ${prefix}/share/wizards/common/scripts
+
+