source: trunk/include/pdwin32.tools@ 4669

Last change on this file since 4669 was 4656, checked in by bird, 25 years ago

Addjustments for Watcom.

File size: 1.2 KB
RevLine 
[4656]1# $Id: pdwin32.tools,v 1.18 2000-11-21 04:39:18 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__
13CCENV = VAC3
14VAC3 = 1
15! else
16CCENV = WAT
17WAT = 1
18! endif
19!endif
[9]20
[4642]21
[4334]22# Check that PDWIN32_INCLUDE is set; set default if not set.
23!ifndef PDWIN32_INCLUDE
24PDWIN32_INCLUDE = ..\..\include
25!endif
26
27
[9]28#
29# System Utilites
30#
[2714]31RM = rm -f
32CP = copy
33MKDIR = mkdir
34ECHO = echo
[3062]35EXISTS = $(PDWIN32_TOOLS)\Exists.cmd
[4620]36DODIRS = $(PDWIN32_TOOLS)\DoDirs.cmd
[3062]37DOWITHDIRS = $(PDWIN32_TOOLS)\dowithdirs.cmd
[2714]38IMPDEF = $(PDWIN32_TOOLS)\impdef.exe
[3135]39DEPEND = $(PDWIN32_TOOLS)\fastdep.exe -o$$(OBJDIR) -cy+
[4636]40CREATEPATH = $(PDWIN32_TOOLS)\CreatePath.cmd
[4642]41EXECEXCL = $(PDWIN32_TOOLS)\ExecExcl.cmd
[3062]42
43#Svl: Remove this when everything has been converted to the new build rules
[3032]44!ifdef OLDBUILD
45DEPEND = $(PDWIN32_TOOLS)\fastdep.exe
[3019]46!endif
[9]47
48
[4334]49# Include compiler dependent tools
50!include $(PDWIN32_INCLUDE)/pdwin32.$(CCENV).tools
[3032]51
Note: See TracBrowser for help on using the repository browser.