【实验】编译MINIGUI应用程序

【实验】编译MINIGUI应用程序


参考文档:MINIGUI-PROG-GUIDE-V1.3-C.pdf
2.4节 为MiniGUI应用程序编写Automake/Autoconf脚本
12~16页

主要步骤:
1、创立文件夹 samples , 里面再创建src目录
2、src下放置源文件
3、从mde-1.3.x中复制configure.in
4、在根目录下创建Makefile.am文件。内容
SUBDIRS=src
5、src/目录下创建Makefile.am。内容:
noinst_PROGRAMS=helloworld
helloworld_SOURCES=helloworld.c
6、samples下创建autogen.sh。内容如下:
#!/bin/sh
aclocal
automake --add-missing
autoconf
7、$chmod +x autogen.sh
8、运行如下命令生成项目Makefile
$./autogen.sh
$./configure --prefix=/minigui/nfsroot/ LDFLAGS=-L/minigui/nfsroot/lib CPPFLAGS=-I/minigui/nfsroot/include CFLAGS=-I/minigui/nfsroot/include
9、make

你可能感兴趣的:(嵌入式系统)