customise

来自「gridgen是一款强大的网格生成程序」· 代码 · 共 51 行

TXT
51
字号
# This file is for customizing the configuation process performed by# `./configure'.  This file consists of sh(1) variable-definition lines.# The value given to those variables by this file will override their default# values.## Be sure to test whether the variable doesn't exists before setting it.## You can also customize the configuration process via the environment# variables seen by ./configure.  For example:##     In csh(1):#	  % setenv CC acc#	  & setenv CFLAGS -g#	  % ./configure##     In sh(1) or ksh(1):#	  $ CC=acc CFLAGS=-g ./configure## Variables in this file override the environmental ones.############################################################################### C compilerif [ -z "$CC" ]; then  CC=gccfi# C compiler flagsif [ -z "$CFLAGS" ]; then  CFLAGS="-g -O2 -Wall"fiCFLAGS_TRIANGLE="$CFLAGS -w -ffloat-store"# Linker flagsif [ -z "$LDFLAGS" ]; then  LDFLAGS="-L/usr/local/lib"fi# Installation prefix (default is /usr/local)if [ "${prefix}" = "NONE" ]; then   prefix=/usr/localfiif [ "${libdir}" = "\${exec_prefix}/lib" ]; then   libdir="${prefix}/lib${LIBEXT}"fiecho "Using prefix ${prefix}"echo "Using libdir ${libdir}"

⌨️ 快捷键说明

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