source: trunk/make/setup.tools.mk@ 8333

Last change on this file since 8333 was 8333, checked in by bird, 24 years ago

Build level info. Symbol files.

File size: 1.4 KB
Line 
1# $Id: setup.tools.mk,v 1.7 2002-04-30 06:19:13 bird Exp $
2
3
4#
5# Colorful output.
6# Define BUILD_NOCOLORS if you don't like it.. :-)
7#
8!ifdef SLKRUNS
9BUILD_NOCOLORS = 1;
10!endif
11!ifndef BUILD_NOCOLORS
12CLRTXT=[32;1m
13CLRERR=[31;1m
14CLRFIL=[33;1m
15CLRRST=[0m
16!else
17CLRTXT=
18CLRERR=
19CLRFIL=
20CLRRST=
21!endif
22
23
24#
25# Standard tools - may be overridden by compiler specific setupfiles.
26#
27ECHO = $(TOOL_ECHO)
28TOOL_BLDLEVEL = $(PATH_TOOLS)\BldLevelInf.cmd
29TOOL_BUILDENV = $(PATH_TOOLS)\BuildEnv.cmd
30TOOL_CMP = $(PATH_TOOLS)\cmp.exe
31!if "$(BUILD_SHELL)" != "4OS2"
32TOOL_COPY = copy
33!else
34TOOL_COPY = copy /Q
35!endif
36TOOL_CREATEPATH = $(PATH_TOOLS)\CreatePath.cmd
37TOOL_DEP = $(PATH_TOOLS)\fastdep.exe
38TOOL_DEP_FILES = *.c *.cpp *.asm *.h *.rc *.dlg *.orc *.inc *.ipf
39TOOL_DEP_FLAGS = $(CC_INCLUDES) $(CXX_INCLUDES) $(AS_INCLUDES) $(ALL_INCLUDES) -i$(PATH_INCLUDES:;= -i)
40TOOL_DLLRNAME = dllrname /q
41TOOL_DODIRS = $(PATH_TOOLS)\dodirs.cmd
42TOOL_DOMAKES = $(PATH_TOOLS)\domakes.cmd
43TOOL_DOWITHDIRS = $(PATH_TOOLS)\dowithdirs.cmd
44TOOL_ECHO = @echo $(CLRTXT)
45TOOL_EXISTS = $(PATH_TOOLS)\Exists.cmd
46TOOL_MAKE = $(MAKE) -nologo
47TOOL_MAPSYM = $(PATH_TOOLS)\MapSym.cmd $(BUILD_ENV)
48TOOL_RM = rm.exe -f
49TOOL_TYPE = type
50
51
52#
53# Default Extensions.
54#
55EXT_DLL = dll
56EXT_EXE = exe
57EXT_IFS = ifs
58EXT_ILIB= lib
59EXT_LIB = lib
60EXT_MAP = map
61EXT_OBJ = obj
62EXT_RES = res
63EXT_RES = res
64EXT_SYM = sym
65EXT_SYS = sys
66EXT_VDD = sys
67
68
Note: See TracBrowser for help on using the repository browser.