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

发布于 2024-11-09 09:17:49 字数 505 浏览 0 评论 0原文

编写/阅读代码似乎比准备部署脚本(例如 ./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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黑凤梨 2024-11-16 09:17:49

运行 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文