Makefile.PL 662 B

12345678910111213141516
  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' => 'LinuxGpib',
  6. 'VERSION_FROM' => 'LinuxGpib.pm', # finds $VERSION
  7. 'PREREQ_PM' => {}, # e.g., Module::Name => 1.1
  8. # 'ABSTRACT_FROM' => 'LinuxGpib.pm', # retrieve abstract from module
  9. 'AUTHOR' => 'Thomas Nisius <tnisius@web.de>',
  10. 'LIBS' => ['-L../../lib/.libs -lgpib -lpthread'],
  11. # 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
  12. 'INC' => '-I../../include',
  13. # 'OBJECT' => '$(O_FILES)', # link all the C files too
  14. 'DISTNAME' => 'LinuxGpib',
  15. );