home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / ImageMagick-4.0.6.tar.gz / ImageMagick-4.0.6.tar / ImageMagick-4.0.6 / PerlMagick / Makefile.nt < prev    next >
Makefile  |  1998-01-03  |  443b  |  12 lines

  1. use ExtUtils::MakeMaker;
  2. # See lib/ExtUtils/MakeMaker.pm for details of how to influence
  3. # the contents of the Makefile that is written.
  4. WriteMakefile(
  5.     'NAME'      => 'Image::Magick',
  6.     'VERSION_FROM' => 'Magick.pm', # finds $VERSION
  7.     'LIBS'      => ['-L..\magick -lIMagick.dll -L..\xlib\lib -lX11'],
  8.     'DEFINE'    => '-D_VISUALC_ -D_WINDOWS',     # e.g., '-DHAVE_SOMETHING' 
  9.     'INC'       => '-I..\magick -I..\xlib\include',
  10. );
  11.  
  12.