- 论坛徽章:
- 0
|
源码目录:
flatc/
--add.h
--add.c
--main.c
/*
* =====================================================================================
*
* Filename: add.h
*
* Description:
*
* Version: 1.0
* Created: 2010年01月21日 10时06分21秒
* Revision: none
* Compiler: gcc
*
* Author: David Fang (A IT worker), qi_fd@163.com
* Company: No
*
* =====================================================================================
*/
#ifndef __ADD_H__
#define __ADD_H__
int add(int a, int b);
#endif
/*
* =====================================================================================
*
* Filename: add.c
*
* Description:
*
* Version: 1.0
* Created: 2010年01月21日 10时07分14秒
* Revision: none
* Compiler: gcc
*
* Author: David Fang (A IT worker), qi_fd@163.com
* Company: No
*
* =====================================================================================
*/
#include "add.h"
int add(int a, int b)
{
return a+b;
}
/*
* =====================================================================================
*
* Filename: main.c
*
* Description:
*
* Version: 1.0
* Created: 2010年01月21日 10时01分27秒
* Revision: none
* Compiler: gcc
*
* Author: David Fang (A IT worker), qi_fd@163.com
* Company: No
*
* =====================================================================================
*/
#include string.h>
#include stdio.h>
#include "add.h"
int main(int argc, char* argv[])
{
int sum = 0;
if (argc != 3)
{
printf("Usage: add [a] \n");
return 1;
}
sum = add(atoi(argv[1]), atoi(argv[2]));
printf("sum is %d\n", sum);
return 0;
}
生成Makefile的步骤如下:
vim Makefile.am
AUTOMAKE_OPTIONS=foreign
bin_PROGRAMS=add
add_SOURCES=main.c add.c
done@done-desktop:~/programs/automaketest/flatc$ autoscan ./
done@done-desktop:~/programs/automaketest/flatc$ ls
add.c add.h autoscan.log configure.scan main.c Makefile.am
done@done-desktop:~/programs/automaketest/flatc$ cp configure.scan configure.ac
修改configure.ac:
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
AM_INIT_AUTOMAKE(add, 1.0)
AC_CONFIG_SRCDIR([add.h])
AC_CONFIG_HEADER([config.h])
# Checks for programs.
AC_PROG_CC
# Checks for libraries.
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([string.h])
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
#AC_CONFIG_FILES([Makefile])
AC_OUTPUT(Makefile)
done@done-desktop:~/programs/automaketest/flatc$ aclocal
done@done-desktop:~/programs/automaketest/flatc$ ls
aclocal.m4 add.h autoscan.log configure.scan Makefile.am
add.c autom4te.cache configure.ac main.c
done@done-desktop:~/programs/automaketest/flatc$ autoconf
done@done-desktop:~/programs/automaketest/flatc$ ls
aclocal.m4 add.h autoscan.log configure.ac main.c
add.c autom4te.cache configure configure.scan Makefile.am
done@done-desktop:~/programs/automaketest/flatc$ autoheader
done@done-desktop:~/programs/automaketest/flatc$ automake --add-missing
done@done-desktop:~/programs/automaketest/flatc$ ls
aclocal.m4 autom4te.cache configure depcomp Makefile.am
add.c autoscan.log configure.ac install-sh Makefile.in
add.h config.h.in configure.scan main.c missing
done@done-desktop:~/programs/automaketest/flatc$ ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for string.h... (cached) yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
done@done-desktop:~/programs/automaketest/flatc$ make
make all-am
make[1]: 正在进入目录 `/home/done/programs/automaketest/flatc'
gcc -DHAVE_CONFIG_H -I. -g -O2 -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
mv -f .deps/main.Tpo .deps/main.Po
gcc -DHAVE_CONFIG_H -I. -g -O2 -MT add.o -MD -MP -MF .deps/add.Tpo -c -o add.o add.c
mv -f .deps/add.Tpo .deps/add.Po
gcc -g -O2 -o add main.o add.o
make[1]:正在离开目录 `/home/done/programs/automaketest/flatc'
done@done-desktop:~/programs/automaketest/flatc$ ls
aclocal.m4 autom4te.cache config.status install-sh Makefile.in
add autoscan.log configure main.c missing
add.c config.h configure.ac main.o stamp-h1
add.h config.h.in configure.scan Makefile
add.o config.log depcomp Makefile.am
done@done-desktop:~/programs/automaketest/flatc$ ./add
Usage: add [a]
done@done-desktop:~/programs/automaketest/flatc$ ./add 2 4
sum is 6
done@done-desktop:~/programs/automaketest/flatc$
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/95535/showart_2155895.html |
|