|
Last change
on this file since 4648 was 4642, checked in by bird, 25 years ago |
|
More changes and correction. Tried to sync watcom files.
New tool.
|
|
File size:
1.2 KB
|
| Line | |
|---|
| 1 | # $Id: pdwin32.tools,v 1.17 2000-11-20 04:58:14 bird Exp $
|
|---|
| 2 | # ODIN / win32os2 Project
|
|---|
| 3 | #
|
|---|
| 4 | # makefile for the build system tools and standard rules
|
|---|
| 5 | # Note: this has to be included after the compiler environment
|
|---|
| 6 | #
|
|---|
| 7 | # phaller@gmx.net, 1999/05/27
|
|---|
| 8 | #
|
|---|
| 9 |
|
|---|
| 10 | # Check that CCENV is set; set defaults if not set.
|
|---|
| 11 | !ifndef CCENV
|
|---|
| 12 | ! ifndef __VERSION__
|
|---|
| 13 | CCENV = VAC3
|
|---|
| 14 | VAC3 = 1
|
|---|
| 15 | ! else
|
|---|
| 16 | CCENV = WAT
|
|---|
| 17 | WAT = 1
|
|---|
| 18 | ! endif
|
|---|
| 19 | !endif
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 | # Check that PDWIN32_INCLUDE is set; set default if not set.
|
|---|
| 23 | !ifndef PDWIN32_INCLUDE
|
|---|
| 24 | PDWIN32_INCLUDE = ..\..\include
|
|---|
| 25 | !endif
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 | #
|
|---|
| 29 | # System Utilites
|
|---|
| 30 | #
|
|---|
| 31 | RM = rm -f
|
|---|
| 32 | CP = copy
|
|---|
| 33 | MKDIR = mkdir
|
|---|
| 34 | ECHO = echo
|
|---|
| 35 | MAPSYM = mapsym
|
|---|
| 36 | EXISTS = $(PDWIN32_TOOLS)\Exists.cmd
|
|---|
| 37 | DODIRS = $(PDWIN32_TOOLS)\DoDirs.cmd
|
|---|
| 38 | DOWITHDIRS = $(PDWIN32_TOOLS)\dowithdirs.cmd
|
|---|
| 39 | IMPDEF = $(PDWIN32_TOOLS)\impdef.exe
|
|---|
| 40 | DEPEND = $(PDWIN32_TOOLS)\fastdep.exe -o$$(OBJDIR) -cy+
|
|---|
| 41 | CREATEPATH = $(PDWIN32_TOOLS)\CreatePath.cmd
|
|---|
| 42 | EXECEXCL = $(PDWIN32_TOOLS)\ExecExcl.cmd
|
|---|
| 43 |
|
|---|
| 44 | #Svl: Remove this when everything has been converted to the new build rules
|
|---|
| 45 | !ifdef OLDBUILD
|
|---|
| 46 | DEPEND = $(PDWIN32_TOOLS)\fastdep.exe
|
|---|
| 47 | !endif
|
|---|
| 48 |
|
|---|
| 49 |
|
|---|
| 50 | # Include compiler dependent tools
|
|---|
| 51 | !include $(PDWIN32_INCLUDE)/pdwin32.$(CCENV).tools
|
|---|
| 52 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.