readme

来自「一百个病毒的源代码 包括熊猫烧香等 极其具有研究价值」· 代码 · 共 43 行

TXT
43
字号
Using the skeleton------------------# # ATTENTION: the shell code written below is just PSEUDO-code especially the# substitutions won't work out of the box.# You want to write a plugin for qmail-logfiles. 0. you have already installed autoconf/automake/libtool.1. copy this directory to ./src/input/qmail$ mkdir ../qmail$ cp *.c *.h *.am ../qmail2. edit the Makefile.am (replace every occurence of skeleton by qmail)$ cd ../qmail$ cat Makefile.am | sed "s/skeleton/qmail/" > Makefile.am.new$ cp Makefile.am.new Makefile.am2a. remove this file from your directory :)$ rm README3. add this directory the master Makefile.am$ cd ..$ cat Makefile.am | sed "/^SUBDIRS/s/$/ qmail/" > Makefile.am.new$ cp Makefile.am.new Makefile.am                            4. edit the configure.inadd src/input/qmail the list at the bottom (AC_OUTPUT)5. rebuild the files$ autoheader$ automake$ autoconf$ configure <options>$ config.status6. makefiles are now setup and you are ready to hack a new plugin.please remove the comments starting with C: from your new plugin.

⌨️ 快捷键说明

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