cc.mak

来自「stl的源码」· MAK 代码 · 共 36 行

MAK
36
字号
# -*- makefile -*- Time-stamp: <08/06/12 14:58:49 ptr>## Copyright (c) 1997-1999, 2002, 2003, 2005-2008# Petr Ovtchenkov## Portion Copyright (c) 1999-2001# Parallel Graphics Ltd.## Licensed under the Academic Free License version 3.0#OPT += -xcode=pic32dbg-shared:	LDFLAGS += -G -Qoption ld -z,initfirst -h$(SO_NAME_DBGxx) ${NOSTDLIB}stldbg-shared:	LDFLAGS += -G -Qoption ld -z,initfirst -h$(SO_NAME_STLDBGxx) ${NOSTDLIB}release-shared:	LDFLAGS += -G -Qoption ld -z,initfirst -h$(SO_NAMExx) ${NOSTDLIB}DEPENDS_COLLECTION_SUNPRO := $(DEPENDS_COLLECTION).sunprocompiler-dep :: $(DEPENDS_COLLECTION_SUNPRO)STD_HEADER_LISTS = $(STLPORT_ETC_DIR)/std_headers.txt \                   $(STLPORT_ETC_DIR)/std_headers_cpp_runtime_h.txt \                   $(STLPORT_ETC_DIR)/std_headers_c.txt \                   $(STLPORT_ETC_DIR)/std_headers_c_h.txt \                   $(STLPORT_ETC_DIR)/std_headers_classic_iostreams.txt \                   $(STLPORT_ETC_DIR)/std_headers_cpp_runtime.txt$(DEPENDS_COLLECTION_SUNPRO) : $(STD_HEADER_LISTS)	@echo "Linking header files required for SunPro compiler"	@for file in `cat $(STD_HEADER_LISTS)`; do \	  echo "." | awk '{printf("%s", $$0)}' ; \	  (cd $(STLPORT_INCLUDE_DIR) ; rm -f $$file.SUNWCCh; ln -s ./$$file $$file.SUNWCCh) ; \        done; echo ""	@cat $(STD_HEADER_LISTS) | awk '{print "$(STLPORT_INCLUDE_DIR)/" $$0 ".SUNWCCh : $(STLPORT_INCLUDE_DIR)/" $$0 }'  > $@

⌨️ 快捷键说明

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