Ignore:
Timestamp:
May 25, 2001, 6:51:46 PM (24 years ago)
Author:
umoeller
Message:

Misc changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/makefile

    r13 r75  
    2424#
    2525#       Required environment variables:
     26#
    2627#               -- PROJECT_BASE_DIR: where to find setup.in; this should
    2728#                   be the root directory of the project, e.g. "C:\cvs\warpin"
    2829#                   or "C:\cvs\xworkplace"
     30#
    2931#               -- HELPERS_OUTPUT_DIR: where to create output files (*.obj, helpers.lib)
    3032#                   this should be a "bin" directory (e.g. "C:\cvs\warpin\bin"
     33#
    3134#               -- CC_HELPERS: compiler command line for compiling C files.
    3235#                   With VAC++, this should include the /Ge+ (compile to EXE)
     
    3437#                   files.
    3538#                   If you're using the "dll" target, specify /Ge- instead.
     39#
    3640#               -- MAINMAKERUNNING: if this is NOT defined, this makefile
    3741#                   will recurse to the makefile in $(PROJECT_BASE_DIR).
    3842#                   So to have this makefile run successfully, define this
    3943#                   variable to something.
     44#
    4045#                   This variable was introduced to be able to start a build
    4146#                   process from src\helpers as well. However, when your own
     
    130135    @echo $(MAKEDIR)\makefile: Returned from main makefile. Done.
    131136
     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.
     140dep:
     141    $(RUN_FASTDEP) *.c
     142    @echo ----- Leaving $(MAKEDIR)
     143
    132144# Define the main dependency between the output HELPERS.LIB and
    133145# all the object files.
Note: See TracChangeset for help on using the changeset viewer.