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

📄 dirsrc.mak

📁 A port of the original STL to many platforms.可以配合多种编译器使用,特别是在使用intel编译器时可以很好的优化代码性能.
💻 MAK
字号:
# -*- Makefile -*- Time-stamp: <03/10/27 18:07:14 ptr>
# $Id: dirsrc.mak 1802 2005-11-01 08:25:57Z complement $

# Some trick to build implicit rules for sources in some different
# subdirectories. I remove catalogs from path to sources, with this
# names I build output object path, and provide dependency from
# source in directory. Due to no loops for rules definition, I should
# use recursion here;

# try take directory from list:
WORD1 := $(word 1,$(DIRS_UNIQUE_SRC))

# is still directory in the list?
ifneq "$(WORD1)" ""
include ${RULESBASE}/rules-o.mak
include ${RULESBASE}/rules-d.mak
ifeq ($(OSNAME),cygming)
include ${RULESBASE}/rules-res.mak
endif
ifeq ($(OSNAME),windows)
include ${RULESBASE}/rules-res.mak
endif
# remove processed directory from list
DIRS_UNIQUE_SRC := $(filter-out $(WORD1),$(DIRS_UNIQUE_SRC))
# recursive include here:
include ${RULESBASE}/${USE_MAKE}/dirsrc.mak
endif

⌨️ 快捷键说明

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