| Line | |
|---|
| 1 | # $Id: setup.tools.mk,v 1.1 2002-04-06 20:25:06 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=-i $(PATH_INCLUDE) $(CC_INCLUDES) $(CXX_INCLUDES) $(AS_INCLUDES) $(ALL_INCLUDES)
|
|---|
| 13 | TOOL_DEP_FILES=*.c *.cpp *.asm *.h *.rc *.dlg
|
|---|
| 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 | # Depreciated (kso don't like these)
|
|---|
| 48 | #
|
|---|
| 49 | RM=$(TOOLS_RM)
|
|---|
| 50 | TOOLS_DEL=@del # use TOOLS_RM!
|
|---|
| 51 | CD=cd
|
|---|
| 52 | CD_ENTER=cd
|
|---|
| 53 | CD_LEAVE=cd ..
|
|---|
| 54 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.