source: trunk/include/pdwin32.tools@ 4636

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

Adjustments and corrections.
1) Flag macros can't be added and added and added and added to - NMAKE don't

support it.

2) Use CreatePath.cmd to makesure that OBJDIR any target directory for a

copy (CP) operation exists.

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