top.mak
来自「C++类模版库实现」· MAK 代码 · 共 58 行
MAK
58 行
# Time-stamp: <03/10/26 16:04:25 ptr># $Id: top.mak,v 1.1 2003/11/14 20:05:15 ptr Exp $.SUFFIXES: .o .cc!ifndef RULESBASERULESBASE = $(SRCROOT)/Makefiles!endif!ifndef ALL_TAGSALL_TAGS = release-shared dbg-shared stldbg-shared release-static dbg-static stldbg-static!endifall_dynamic: release-shared dbg-shared stldbg-sharedall_static: release-static dbg-static stldbg-static#!if [echo $(ALL_TAGS)]#!endif#!if [echo $(RULESBASE)]#!endifall: dirs $(ALL_TAGS)# include file, generated by configure, if available!if EXIST( $(RULESBASE)/config.mak )!include $(RULESBASE)/config.mak!endif# define what make clone we useUSE_MAKE = nmake# identify OS and build date!include $(RULESBASE)/$(USE_MAKE)/sysid.mak# OS-specific definitions, like ar, ln, install, etc.!include $(RULESBASE)/$(USE_MAKE)/sys.mak# rules to make dirs for targets!include $(RULESBASE)/$(USE_MAKE)/targetdirs.mak# extern libraries!include $(RULESBASE)/$(USE_MAKE)/extern.mak# derive common targets (*.o, *.d),# build rules (including output catalogs)!include $(RULESBASE)/$(USE_MAKE)/targets.mak# dependency#include ${RULESBASE}/depend-$(COMPILER_NAME).mak# general clean!include $(RULESBASE)/$(USE_MAKE)/clean.mak# if target is library, rules for library!ifdef LIBNAME!include $(RULESBASE)/$(USE_MAKE)/lib/top.mak!endif# if target is program, rules for executable!ifdef PRGNAME!include $(RULESBASE)/$(USE_MAKE)/app/top.mak!endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?