home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / DESQVIEW / MISC / MIXEDBAG.ZIP / PREMAKE.DOC < prev    next >
Encoding:
Text File  |  1989-04-29  |  1.4 KB  |  43 lines

  1. PREMAKE (v1.0) - Prepare for running the Microsoft NMAKE
  2.  
  3. This program will scan the current directory for C source files, and
  4. build an approprate MAKE file.
  5.  
  6. The following files are created:
  7.  
  8. COMPILE.MAK  lists source code dependencies, and optionally include 
  9.              file dependencies.            
  10.  
  11. LINK.MAK     is a list of object files that may be created from the sources.
  12.  
  13. LINKIN.MAK   is the same list of objects in a link response-file
  14.              format.
  15.  
  16. MAKEFILE     will be created if it does not already exist.  This will
  17.              do some set-up and include LINK.MAK and COMPILE.MAK.  
  18.              This file will normally need a little editing to set
  19.              compiler and/or linker options.
  20.  
  21.  
  22. This program is Copyright 1989, by David G. Thomas.
  23. I may be reached at the PowerSoft BBS  (404) 928-9294
  24.  
  25. You are free to use this program as you please, and distribute it
  26. to your friends.  I only ask that you do not alter the program, and
  27. you include this file when you pass it on.
  28.  
  29.  
  30. USAGE: PREMAKE {-i {-d}} wildcard
  31.  
  32.   -i   Look into source files for include file dependencies.
  33.        Default 'touches' source file when include file changes.
  34.  
  35.   -d   Deletes .OBJ targets when include file is changed.
  36.        Good for one-time cleanup after include file change,
  37.        without modifying source file date.
  38.  
  39. EXAMPLE:
  40.  
  41. PREMAKE *.c
  42.    
  43.