📄 makefile
字号:
## Makefile 1.40 2001/12/01 01:17:24 (David Hinds)#ifeq (config.mk, $(wildcard config.mk))include config.mkendifALL = modules clients wireless cardmgr flash debug-tools man etcDIRS = cardmgr flash debug-tools man etcifndef CONFIG_PCMCIADIRS := modules clients wireless $(DIRS)endifhelp: @echo "Pick one of the following targets:" @echo -e "\tmake config\t\t- configure and check system setup" @echo -e "\tmake oldconfig\t\t- reconfigure without prompting" @echo -e "\tmake all\t\t- build modules and programs" @echo -e "\tmake install\t\t- install modules and programs" @echo -e "\tmake clean\t\t- remove old binaries and dependency files" @echo -e "\tmake realclean\t\t- start from scratch"config .prereq.ok: @touch config.mk @$(MAKE) -s clean @./Configureoldconfig: @touch config.mk @$(MAKE) -s clean @./Configure -nall: .prereq.ok kcheck @set -e ; for d in $(DIRS) ; do $(MAKE) -C $$d ; done @for f in *.mk ; do \ if [ $$f != config.mk -a $$f != rules.mk ] ; then \ $(MAKE) -f $$f all ; \ fi ; doneclean: @touch config.mk @set -e ; for d in $(ALL) ; do $(MAKE) -C $$d clean ; done rm -f .prereq.ok config.mk include/pcmcia/config.h rm -f include/linux/modversions.hrealclean: rm -f config.out @$(MAKE) cleaninstall: .prereq.ok kcheck @set -e ; for d in $(DIRS) ; do $(MAKE) -C $$d install ; done @for f in *.mk ; do \ if [ $$f != config.mk -a $$f != rules.mk ] ; then \ $(MAKE) -f $$f install ; \ fi ; donekcheck: @. ./config.out ; \ if [ "$$CHECK" != "" ] ; then \ if [ "`cksum < $$CHECK`" != "$$CKSUM" ] ; then \ /bin/echo -n "Kernel configuration has changed." ; \ /bin/echo " Please re-run 'make config'." ; \ exit 1 ; \ fi ; \ fi
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -