makefile.in

来自「UCL Common Code Library Routines comm」· IN 代码 · 共 26 行

IN
26
字号
#
# Makefile for the common code library project. 
# This probably requires GNU make.
#

SUBDIRS=src tests examples @OPTDOC@

all: all-recursive

all-recursive:
	for s in $(SUBDIRS) ; do (cd $$s && $(MAKE)) || exit 1 ; done

clean: clean-recursive

clean-recursive:
	for s in $(SUBDIRS) ; do (cd $$s && $(MAKE) clean) ; done

distclean: distclean-recursive
	rm -f Makefile

distclean-recursive:
	for s in $(SUBDIRS) ; do (cd $$s && $(MAKE) distclean) ; done

.PHONY: clean clean-recursive distclean

⌨️ 快捷键说明

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