Changeset 4334 for trunk/include/pdwin32.mk
- Timestamp:
- Sep 28, 2000, 5:16:25 AM (25 years ago)
- File:
-
- 1 edited
-
trunk/include/pdwin32.mk (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/pdwin32.mk
r3032 r4334 1 # $Id: pdwin32.mk,v 1. 8 2000-03-06 23:42:11bird Exp $1 # $Id: pdwin32.mk,v 1.9 2000-09-28 03:16:23 bird Exp $ 2 2 # 3 3 # PD-Win32 Project … … 12 12 # DEBUG - build a debug version instead of release version 13 13 # CCENV: 14 # VAC3 - use IBM VisualAge for C++ 3 compiler environment (default) 15 # EMX - use GNU/EMX compiler environment 14 # VAC3 - use IBM VisualAge for C++ 3 compiler environment (default). 15 # VAC36 - use IBM VisualAge for C++ 3.6.5 compiler environment. 16 # WAT - use Watcom C/C++ v11.x compiler environment. 17 # EMX - use GNU/EMX compiler environment. 16 18 # 17 19 20 18 21 # include compiler environment 19 !ifndef CCENV 22 !ifndef __VERSION__ 23 ! ifndef CCENV 20 24 CCENV=VAC3 21 25 VAC3=1 22 ! else23 ! if "$(CCENV)" == "VAC36"26 ! else 27 ! if "$(CCENV)" == "VAC36" 24 28 CCENV=VAC36 25 29 VAC36=1 26 !endif 30 ! else 31 32 ! endif 33 ! endif 34 !else 35 # (wmake and Watcom) 36 CCENV=WAT 37 WAT=1 38 ! if "$(%DEBUG)" != "" 39 DEBUG=1 40 ! endif 27 41 !endif 28 42 43 44 # Set default directory paths if not set. 45 !ifndef PDWIN32_INCLUDE 46 PDWIN32_INCLUDE = ..\..\include 47 !endif 48 !ifndef PDWIN32_BIN 49 PDWIN32_BIN = ..\..\$(OBJDIR) 50 !endif 51 !ifndef PDWIN32_LIB 52 PDWIN32_LIB = ..\..\lib 53 !endif 54 !ifndef PDWIN32_TOOLS 55 PDWIN32_TOOLS = ..\..\tools\bin 56 !endif 57 58 59 # Include compiler environment. 29 60 !ifdef DEBUG 30 61 !include $(PDWIN32_INCLUDE)/pdwin32.$(CCENV).dbg … … 33 64 !endif 34 65 35 # include system tools 66 67 # Include system tools 36 68 !include $(PDWIN32_INCLUDE)/pdwin32.tools 37 69
Note:
See TracChangeset
for help on using the changeset viewer.
