⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.pl.posix_in

📁 mini http server,可以集成嵌入到程序中,实现简单的web功能
💻 POSIX_IN
字号:
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'			=> 'Pi3',
    'VERSION_FROM'	=> 'Pi3.pm', # finds $VERSION
    'PREREQ_PM'		=> {}, # e.g., Module::Name => 1.1
    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM	=> 'Pi3.pm', # retrieve abstract from module
       AUTHOR     	=> 'Holger Zimmermann <zimpel@users.sourceforge.net>') : ()),
    'LIBS'			=> ['-L../../../../bin -lPiAPI -lPi2API -lPi3API -lPi3Perl'], # e.g., '-lm'
    'DEFINE'		=> '', # e.g., '-DHAVE_SOMETHING'
	# Insert -I. if you add *.h files later:
    'INC'			=> '-I.. -I../../../PiAPI -I../../../Pi2API -I../../../Pi3API', # e.g., '-I/usr/include/other'
	# Un-comment this if you add C files to link with later:
    'OBJECT'		=> '$(O_FILES)', # link all the C files too
);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -