📄 configure.in
字号:
# 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -