summaryrefslogtreecommitdiff
blob: 1afd87378bdf2fd63283c785a4c89e1146f0411e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
diff --git a/Makefile.PL b/Makefile.PL
index 046e794..429dc42 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -81,43 +81,5 @@ WriteMakefile(
    # /usr/bin/perl, and attempt to find a reasonable spot if you
    # are running some other perl.
    #
-   macro              => {
-     # vmware apps
-     INST_VMWARE_APPS => 'apps',
-     DEST_VMWARE_APPS => (
-       $Config{perlpath} eq '/usr/bin/perl' ? 
-         '/usr/lib/vmware-viperl/apps' :
-         '$(INSTALLSITESCRIPT)/apps'
-     ),
-     # vmware docs
-     INST_VMWARE_DOC => 'doc',
-     DEST_VMWARE_DOC => (
-       $Config{perlpath} eq '/usr/bin/perl' ? 
-         '/usr/share/doc/vmware-viperl/doc' :
-         '$(SITEPREFIX)/doc'
-     ),
-   },
 );
 
-#
-# Additional targets for installing apps and doc.
-#
-sub MY::postamble {
-  return <<'MAKE';
-install :: install_vmware_apps install_vmware_doc
-	$(NOECHO) $(NOOP)
-
-install_vmware_apps :
-	$(NOECHO) $(MOD_INSTALL) \
-		$(INST_VMWARE_APPS) $(DEST_VMWARE_APPS)
-
-install_vmware_doc :
-	$(NOECHO) $(MOD_INSTALL) \
-		$(INST_VMWARE_DOC) $(DEST_VMWARE_DOC)
-
-clean ::
-	$(RM_RF) VMware WSMan
-
-MAKE
-}
-