Changeset 9 for trunk/include


Ignore:
Timestamp:
May 27, 1999, 1:56:43 PM (26 years ago)
Author:
phaller
Message:

Experimental support vor EMX/GCC 0.9d as build environment. IBM VAC++ 3 remains default.

Location:
trunk/include
Files:
5 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/pdwin32.mk

    r4 r9  
    33#
    44#
    5 #       Create: cdmckill@novice.uwaterloo.ca
    6 #               January 4th, 1998
     5#      Create: cdmckill@novice.uwaterloo.ca, January 4th, 1998
     6#      Modified: phaller@gmx.net, May 27th, 1999
    77#
    88#
    99
     10# defines
     11#    DEBUG - build a debug version instead of release version
     12#    CCENV:
     13#      VAC3 - use IBM VisualAge for C++ 3 compiler environment (default)
     14#      EMX - use GNU/EMX compiler environment
     15
     16# include compiler environment
     17!ifndef CCENV
     18CCENV=VAC3
     19!endif
    1020
    1121!ifdef DEBUG
    12 !include $(PDWIN32_INCLUDE)/pdwin32.dbg
     22!include $(PDWIN32_INCLUDE)/pdwin32.$(CCENV).dbg
    1323!else
    14 !include $(PDWIN32_INCLUDE)/pdwin32.rel
     24!include $(PDWIN32_INCLUDE)/pdwin32.$(CCENV).rel
    1525!endif
     26
     27# include system tools
     28!include $(PDWIN32_INCLUDE)/pdwin32.tools
     29
Note: See TracChangeset for help on using the changeset viewer.