Linux Makefile介绍自动编译和链接

复制============================configure.in内容开始========================================= # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_INIT(helloworld.c) AM_INIT_AUTOMAKE(helloworld,绍自 1.0) # Checks for programs. AC_PROG_CC # Checks for libraries. # Checks for header files. # Checks for typedefs, structures, and compiler characteristics. # Checks for library functions. AC_OUTPUT(Linux Makefile) ============================configure.in内容结束========================================= 1.2.3.4.5.6.7.8.9.10.11.12.13.