Changeset 243 for trunk/src/helpers/helpers_pre.in
- Timestamp:
- Jan 29, 2003, 7:41:39 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/helpers_pre.in
r242 r243 1 1 # 2 2 # Pre-include file for the main helpers makefile. 3 # This contains shared definitions and all the objects4 # that have to be built.5 3 # 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 # 37 7 38 8 # The OBJS macro contains all the .OBJ files which need to be … … 101 71 $(OUTPUTDIR)\memdebug.obj\ 102 72 $(OUTPUTDIR)\memdebug_win.obj\ 73 $(OUTPUTDIR)\mmpmh.obj\ 103 74 $(OUTPUTDIR)\shapewin.obj\ 104 75 $(OUTPUTDIR)\threads.obj\ … … 108 79 $(OUTPUTDIR)\winh.obj 109 80 110 # helpers include path111 INC = ..\..\include112 HLPINC = $(INC)\helpers113 114 PROJECTINC = $(PROJECT_BASE_DIR)\include
Note:
See TracChangeset
for help on using the changeset viewer.