当我的 C 文件有其他依赖项时,如何为它准备 ./configure make make install ?
编写/阅读代码似乎比准备部署脚本(例如 ./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;
}
Writing/reading code seems less stress then preparing a deploy scripts such as ./configure then make and make install for my C application's. How can i make a ./configure file and make files for this following C code? Thank you for your valuable support.
@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;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
运行 autoscan 是一个好的开始。它会扫描您的源文件并创建一个初始configure.ac 文件(名为configure.scan)。另请查看 ifnames 来扫描你的#if。
Running autoscan is a good start. It scans your source files and creates an initial configure.ac file (named configure.scan). Also look at ifnames to scan for your #if's.