Makefile.PL
上传用户:qdrechuli
上传日期:2022-08-01
资源大小:917k
文件大小:1k
源码类别:

视频捕捉/采集

开发平台:

Visual C++

  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' => 'GD',
  6.     'VERSION_FROM' => 'GD.pm',
  7.     'MYEXTLIB'  => 'libgd/libgd$(LIB_EXT)',
  8.     'dist'      => {'COMPRESS'=>'gzip -9f', 'SUFFIX' => 'gz',
  9.             'ZIP'=>'/usr/bin/zip','ZIPFLAGS'=>'-rl'},
  10.     # Uncomment the line below if you're getting link errors
  11.     # having to do with missing math functions (like floor)
  12.     'LIBS'      =>  ["-lm"],
  13.     # Uncomment the line below if you're using a perl compiled
  14.     # for fastCGI (http://www.fastcgi.com/).
  15.     # 'DEFINE' => '-DFCGI'
  16. );
  17. sub MY::postamble{
  18. '
  19. $(MYEXTLIB): libgd/Makefile
  20. DEFINE='$(DEFINE)'; export DEFINE INC; 
  21. cd libgd && $(MAKE) -e
  22. html: GD.pm
  23. pod2html GD.pm
  24. mv GD.pm.html GD.html
  25. ';
  26. }