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