|
Last change
on this file since 4504 was 4334, checked in by bird, 25 years ago |
|
Support for new makefile style.
Changed watcom. Nows uses UNIX compatible mode rather than M$.
|
|
File size:
1.0 KB
|
| Rev | Line | |
|---|
| [4334] | 1 | # $Id: pdwin32.tools,v 1.14 2000-09-28 03:16:23 bird Exp $
|
|---|
| [9] | 2 | # ODIN / win32os2 Project
|
|---|
| [844] | 3 | #
|
|---|
| [9] | 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 |
|
|---|
| [4334] | 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
|
|---|
| [9] | 20 |
|
|---|
| [4334] | 21 | # Check that PDWIN32_INCLUDE is set; set default if not set.
|
|---|
| 22 | !ifndef PDWIN32_INCLUDE
|
|---|
| 23 | PDWIN32_INCLUDE = ..\..\include
|
|---|
| 24 | !endif
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| [9] | 27 | #
|
|---|
| 28 | # System Utilites
|
|---|
| 29 | #
|
|---|
| [2714] | 30 | RM = rm -f
|
|---|
| 31 | CP = copy
|
|---|
| 32 | MKDIR = mkdir
|
|---|
| 33 | ECHO = echo
|
|---|
| [3480] | 34 | MAPSYM = mapsym
|
|---|
| [3062] | 35 | EXISTS = $(PDWIN32_TOOLS)\Exists.cmd
|
|---|
| 36 | DOWITHDIRS = $(PDWIN32_TOOLS)\dowithdirs.cmd
|
|---|
| [2714] | 37 | IMPDEF = $(PDWIN32_TOOLS)\impdef.exe
|
|---|
| [3135] | 38 | DEPEND = $(PDWIN32_TOOLS)\fastdep.exe -o$$(OBJDIR) -cy+
|
|---|
| [3062] | 39 |
|
|---|
| 40 | #Svl: Remove this when everything has been converted to the new build rules
|
|---|
| [3032] | 41 | !ifdef OLDBUILD
|
|---|
| 42 | DEPEND = $(PDWIN32_TOOLS)\fastdep.exe
|
|---|
| [3019] | 43 | !endif
|
|---|
| [9] | 44 |
|
|---|
| 45 |
|
|---|
| [4334] | 46 | # Include compiler dependent tools
|
|---|
| 47 | !include $(PDWIN32_INCLUDE)/pdwin32.$(CCENV).tools
|
|---|
| [3032] | 48 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.