Changeset 9117 for trunk/make


Ignore:
Timestamp:
Aug 24, 2002, 6:51:09 AM (23 years ago)
Author:
bird
Message:

Added missing '.' to the PATH_INCLUDES.
Added missing -DTCPV40HDRS -DCOMCTL32UNDOC to BUILD_DEFINES.
Define LIB_ODINCRT and OBJ_DLLENTRY as globals in the Odin32 build system.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/make/setup.mak

    r9047 r9117  
    1 # $Id: setup.mak,v 1.11 2002-08-20 07:05:24 bird Exp $
     1# $Id: setup.mak,v 1.12 2002-08-24 04:51:09 bird Exp $
    22
    33#
     
    124124PATH_DEF        = .
    125125# Where the include files are located.
    126 PATH_INCLUDES   = $(PATH_ROOT)\include;$(PATH_ROOT)\include\win
     126PATH_INCLUDES   = $(PATH_ROOT)\include\win;.;$(PATH_ROOT)\include
    127127
    128128# Where the temporary files goes.
     
    174174
    175175# The default definitions.
    176 BUILD_DEFINES           = -D__WIN32OS2__ -D__WINE__
     176BUILD_DEFINES           = -D__WIN32OS2__ -D__WINE__ -DTCPV40HDRS -DCOMCTL32UNDOC
    177177BUILD_BLDLEVEL_FLAGS    = -V^"^#define=ODIN32_VERSION,$(PATH_ROOT)\include\odinbuild.h^" \
    178178                          -M^"^#define=ODIN32_BUILD_NR,$(PATH_ROOT)\include\odinbuild.h^"
    179179BUILD_PROJECT           = Odin32
    180180
     181# Project Specific definitions.
     182!if "$(BUILD_MODE)" != "DEBUG"
     183LIB_ODINCRT             = $(PATH_LIB)\odincrt.$(EXT_LIB)
     184!else
     185LIB_ODINCRT             = $(PATH_LIB)\odincrtd.$(EXT_LIB)
     186!endif
     187!ifndef CUSTOMBUILD
     188OBJ_DLLENTRY            = $(PATH_LIB)\dllentry.$(EXT_OBJ)
     189!else
     190OBJ_DLLENTRY            =
     191!endif
     192
    181193# This is the process file to include at end of the makefile.
    182194MAKE_INCLUDE_PROCESS    = $(PATH_MAKE)\process.mak
    183 
    184195
    185196
Note: See TracChangeset for help on using the changeset viewer.