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

📄 compile_depend.make

📁 这是一个从音频信号里提取特征参量的程序
💻 MAKE
字号:
# file: $isip/scripts/make/compile_depend.make# this makefile contains a standard set of dependencies and targets# that are used by all makefiles in the environment.##------------------------------------------------------------------------------## define variables section##------------------------------------------------------------------------------# include configure variables#ifeq "$(MAKING_MAKE)" ""	include $(ISIP_DEVEL)/lib/scripts/make/compile_configure.makeelse	include ./compile_configure.makeendif# define command for installing header file#INSTALL_CMD = $(LINK_CMD)UNINSTALL_CMD = $(UNLINK_CMD)# define header files#HDR_FILES = $(ISIP_HEADER_FILES)HDR_INST = $(foreach hdr,$(HDR_FILES),$(ISIP_DEVEL)/include/$(notdir $(hdr)))HDR_REMOVE = $(foreach hdr,$(HDR_FILES),dc_$(notdir $(hdr)))# define suffixes#.SUFFIXES: .cc# make sure we clean up#  note: this code is executed ALL the time#.DONE:# make everything silent#.SILENT:.PHONY: all clean test_make check#------------------------------------------------------------------------------## define targets and dependencies##------------------------------------------------------------------------------# define all and install to just to depend#all: dependinstall: all# make copy from the class to the $isip/include directory, if necessary#$(HDR_INST): $(ISIP_DEVEL)/include/%.h: %.h 	echo "> linking" `pwd`/$< "to" $@	-$(UNINSTALL_CMD) $@ 2>/dev/null	$(INSTALL_CMD) `pwd`/$< $@$(HDR_REMOVE): dc_%.h:	if (test -r "$(ISIP_DEVEL)/include/$*.h"); then echo "compile_depend.make: unlinking $(ISIP_DEVEL)/include/$*.h"; $(UNINSTALL_CMD) $(ISIP_DEVEL)/include/$*.h; fi# create the $(ISIP_DEVEL)/include directory if necessary#$(ISIP_DEVEL)/include: 	-mkdir $(ISIP_DEVEL)/include 2>/dev/null# depend directive: this directive is called by recursive make before# any other, so header files will be in place before any code is# compiled.#depend: $(ISIP_DEVEL)/include $(HDR_INST)# clean does nothing for make depend#clean:distclean: $(HDR_REMOVE)test_make:	echo "In compile_depend.make"	echo "hdr_files = " $(HDR_FILES)	echo "hdr_inst = " $(HDR_INST)# check existence#check: $(HDR_FILES)## end of file

⌨️ 快捷键说明

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