⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.in

📁 UCL Common Code Library Routines common to a number of multimedia tools. The library originates
💻 IN
字号:
#
# Makefile for the common code library project. 
# This probably requires GNU make.
#

SUBDIRS=rtp

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