aboutsummaryrefslogtreecommitdiff
path: root/Perl/demos
diff options
context:
space:
mode:
authormertz2003-11-04 12:33:57 +0000
committermertz2003-11-04 12:33:57 +0000
commitfc6b9897872007d57a2145e5d07d90f7e5305a0a (patch)
treec85b5ca6449163ad7e04ae86cd48f5f097174ecd /Perl/demos
parentd356d70d478c84820b98bd4479ab8f0002547825 (diff)
downloadtkzinc-fc6b9897872007d57a2145e5d07d90f7e5305a0a.zip
tkzinc-fc6b9897872007d57a2145e5d07d90f7e5305a0a.tar.gz
tkzinc-fc6b9897872007d57a2145e5d07d90f7e5305a0a.tar.bz2
tkzinc-fc6b9897872007d57a2145e5d07d90f7e5305a0a.tar.xz
demos codes have been moved from demos/ to Tk/demos/ subdirectory to
use the standard ExtUtils::MakeMaker::WriteMakefile rather than the Tk specific Tk::MMutil::TkExtMakefile
Diffstat (limited to 'Perl/demos')
-rw-r--r--Perl/demos/Makefile.PL15
1 files changed, 6 insertions, 9 deletions
diff --git a/Perl/demos/Makefile.PL b/Perl/demos/Makefile.PL
index 5e431b7..9b22bab 100644
--- a/Perl/demos/Makefile.PL
+++ b/Perl/demos/Makefile.PL
@@ -1,10 +1,7 @@
-
-
-use Tk::MMutil;
-Tk::MMutil::TkExtMakefile(
- 'EXE_FILES' => ['zinc-demos'],
- 'linkext' => { LINKTYPE => ''},
-# 'PMLIBDIRS' => [ qw(demos/zinc_pm) ],
+use ExtUtils::MakeMaker;
+WriteMakefile(
+ 'EXE_FILES' => ['zinc-demos'],
+ 'PMLIBDIRS' => [ qw( Tk/demos/zinc_pm Tk/demos/zinc_contrib_lib
+ Tk/demos/zinc_data Tk/demos/zinc_lib ) ],
);
-
-
+