Ignore:
Timestamp:
Jan 29, 2003, 7:41:39 PM (23 years ago)
Author:
umoeller
Message:

New build system, multimedia, other misc fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/helpers_pre.in

    r242 r243  
    11#
    22#   Pre-include file for the main helpers makefile.
    3 #   This contains shared definitions and all the objects
    4 #   that have to be built.
    53#
    6 
    7 !ifndef PROJECT_BASE_DIR
    8 !error in $(MAKEDIR)\makefile: PROJECT_BASE_DIR must be set before calling the HELPERS makefile. Terminating.
    9 !endif
    10 
    11 !if [@echo     $(MAKEDIR)\makefile: PROJECT_BASE_DIR is: $(PROJECT_BASE_DIR)]
    12 !endif
    13 
    14 # include setup (compiler options etc.)
    15 !include $(PROJECT_BASE_DIR)\config.in
    16 !include $(PROJECT_BASE_DIR)\make\setup.in
    17 
    18 !ifndef HELPERS_OUTPUT_DIR
    19 !error in $(MAKEDIR)\makefile: HELPERS_OUTPUT_DIR must be set before calling the HELPERS makefile. Terminating.
    20 !endif
    21 
    22 # Define the suffixes for files which NMAKE will work on.
    23 # .SUFFIXES is a reserved NMAKE keyword ("pseudotarget") for
    24 # defining file extensions that NMAKE will recognize in inference
    25 # rules.
    26 .SUFFIXES: .c .h .ih .obj .lib .dll
    27 
    28 # OUTPUTDIR specifies the directory where we will put the
    29 # files created by this makefile.
    30 OUTPUTDIR = $(HELPERS_OUTPUT_DIR)
    31 
    32 !if [@echo     $(MAKEDIR)\makefile: helpers OBJs will be written to $(OUTPUTDIR)]
    33 !endif
    34 
    35 !if [@md $(OUTPUTDIR) 2> NUL]
    36 !endif
     4#   This is shared between makefile and makefile_dll
     5#   and defines all the objects that have to be built.
     6#
    377
    388# The OBJS macro contains all the .OBJ files which need to be
     
    10171$(OUTPUTDIR)\memdebug.obj\
    10272$(OUTPUTDIR)\memdebug_win.obj\
     73$(OUTPUTDIR)\mmpmh.obj\
    10374$(OUTPUTDIR)\shapewin.obj\
    10475$(OUTPUTDIR)\threads.obj\
     
    10879$(OUTPUTDIR)\winh.obj
    10980
    110 # helpers include path
    111 INC = ..\..\include
    112 HLPINC = $(INC)\helpers
    113 
    114 PROJECTINC = $(PROJECT_BASE_DIR)\include
Note: See TracChangeset for help on using the changeset viewer.