如何准备./configure在我的C文件有其他依赖项时make make install?

时间:2011-05-23 16:07:48

标签: c windows makefile centos autoconf

编写/阅读代码似乎压力较小,然后准备部署脚本,如./configure,然后为我的C应用程序make和make install。如何制作./configure文件并为此后续C代码生成文件?感谢您的宝贵支持。

@file: main.c:

#include <ptlib.h>
#include <ptlib/video.h>

#ifndef _WIN32
#ifdef H323_H46018
    #include "h460/h460_std18.h"
    H460_FEATURE(Std18);
    H460_FEATURE(Std19);
#endif

#ifdef H323_H46023
    #include "h460/h460_std23.h"
#endif
#endif // _WIN32
#define new PNEW

int main()
{
 // just assume the above works first
 return 0;
}

1 个答案:

答案 0 :(得分:2)

运行autoscan是一个好的开始。它会扫描您的源文件并创建一个初始的configure.ac文件(名为configure.scan)。另请查看ifnames以扫描您的#if。