configure.in

来自「利用C语言实现的人工智能系统」· IN 代码 · 共 57 行

IN
57
字号
# Process this file with autoconf to produce a configure script.

# Order of itmes is suggested in the autoconf documentation to be as below.
# 
# checks for programs
# checks for libraries
# checks for header files
# checks for typedefs
# checks for structures
# checks for compiler characteristics
# checks for library functions
# checks for system services
# creates output files

# Application name is intsys and the version belongs to the application.
AC_INIT([aisystem], [1.0.1.0], [info@intelligencerealm.com])


# The automake program does not enforce the presence of the following files:
#		INSTALL, NEWS, README, AUTHORS, ChangeLog, COPYING, depcomp, missing  
# if foreign option is set.
AM_INIT_AUTOMAKE([-Wall -Werror 1.9 foreign])

AC_PREREQ([2.59])

AC_CONFIG_SRCDIR([main.c])

CC=gcc

# Checks which C compiler program is installed.
AC_PROG_CC

# Checks to see whether your system has a BSD compatible install utility. If not then it uses `install-sh' 
# which `automake' will install at the root of your package directory if it's not there yet.
AC_PROG_INSTALL 


# Checks for libraries.


# Define compiler flags.



# Checks for header files.
AC_HAVE_HEADERS(main.h)
AC_CHECK_HEADERS([main.h config.h])


# Writes a config.h file with compiling configurations.
AC_CONFIG_HEADERS([config.h])

# Writes a Makefile in each folder where we have source files.
AC_CONFIG_FILES([Makefile])

AC_OUTPUT

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?