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