📄 configure
字号:
#! /bin/sh## configure -- produce a config.h from a known configurationcase "$#" in1) ;;*) echo "Usage: $0 system_type" >&2 echo "Known systems: `cd config; echo ;ls -C`" >&2 exit 2 ;;esacif [ -f config/$1 ]; then sh ./mungeconf config/$1 config.in >config.h # echo #echo lines to stdout sed -n '/^#echo /s///p' config/$1 case "$1" in bsd44) ln -s Makefile.bsd44 Makefile ; exit 0 ;; esac sed -n '/^MAKE_.*/s//s,^##&## ,,/p' config/$1 >sedscr if [ -s sedscr ] then sed -f sedscr Makefile.in >Makefile else cp Makefile.in Makefile fi rm -f sedscrelse echo "\`$1' is not a known configuration." echo "Either construct one based on the examples in the config directory," echo "or copy config.in to config.h and edit it." exit 1fi
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -