home *** CD-ROM | disk | FTP | other *** search
- PREMAKE (v1.0) - Prepare for running the Microsoft NMAKE
-
- This program will scan the current directory for C source files, and
- build an approprate MAKE file.
-
- The following files are created:
-
- COMPILE.MAK lists source code dependencies, and optionally include
- file dependencies.
-
- LINK.MAK is a list of object files that may be created from the sources.
-
- LINKIN.MAK is the same list of objects in a link response-file
- format.
-
- MAKEFILE will be created if it does not already exist. This will
- do some set-up and include LINK.MAK and COMPILE.MAK.
- This file will normally need a little editing to set
- compiler and/or linker options.
-
-
- This program is Copyright 1989, by David G. Thomas.
- I may be reached at the PowerSoft BBS (404) 928-9294
-
- You are free to use this program as you please, and distribute it
- to your friends. I only ask that you do not alter the program, and
- you include this file when you pass it on.
-
-
- USAGE: PREMAKE {-i {-d}} wildcard
-
- -i Look into source files for include file dependencies.
- Default 'touches' source file when include file changes.
-
- -d Deletes .OBJ targets when include file is changed.
- Good for one-time cleanup after include file change,
- without modifying source file date.
-
- EXAMPLE:
-
- PREMAKE *.c
-
-