Changeset 75 for trunk/src/helpers/makefile
- Timestamp:
- May 25, 2001, 6:51:46 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/makefile
r13 r75 24 24 # 25 25 # Required environment variables: 26 # 26 27 # -- PROJECT_BASE_DIR: where to find setup.in; this should 27 28 # be the root directory of the project, e.g. "C:\cvs\warpin" 28 29 # or "C:\cvs\xworkplace" 30 # 29 31 # -- HELPERS_OUTPUT_DIR: where to create output files (*.obj, helpers.lib) 30 32 # this should be a "bin" directory (e.g. "C:\cvs\warpin\bin" 33 # 31 34 # -- CC_HELPERS: compiler command line for compiling C files. 32 35 # With VAC++, this should include the /Ge+ (compile to EXE) … … 34 37 # files. 35 38 # If you're using the "dll" target, specify /Ge- instead. 39 # 36 40 # -- MAINMAKERUNNING: if this is NOT defined, this makefile 37 41 # will recurse to the makefile in $(PROJECT_BASE_DIR). 38 42 # So to have this makefile run successfully, define this 39 43 # variable to something. 44 # 40 45 # This variable was introduced to be able to start a build 41 46 # process from src\helpers as well. However, when your own … … 130 135 @echo $(MAKEDIR)\makefile: Returned from main makefile. Done. 131 136 137 # The "dep" target: run fastdep on the sources. 138 # "nmake dep" gets called from src\makefile if nmake dep 139 # is running on the main makefile. 140 dep: 141 $(RUN_FASTDEP) *.c 142 @echo ----- Leaving $(MAKEDIR) 143 132 144 # Define the main dependency between the output HELPERS.LIB and 133 145 # all the object files.
Note:
See TracChangeset
for help on using the changeset viewer.