home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / kbstuf.zip / STUFFER / MAKEFILE next >
Text File  |  1993-08-22  |  677b  |  23 lines

  1. #*******************************************************************************
  2. #
  3. # File Name       : makefile
  4. # Job Name        : KbStuffer
  5. # Program Name    : Stuffer.exe
  6. # Date Created    : April 3, 1993
  7. # Description     : NMAKE - MakeFile For Stuffer.exe
  8. #                   MicroSoft C Ver 6.0
  9. #
  10. # Routines        : None
  11. #
  12. #*******************************************************************************
  13.  
  14. Stuffer.exe: Stuffer.obj GetId.c GetId.exe
  15.    link Stuffer.obj, Stuffer, NUL, llibcep os2,,
  16.  
  17. Stuffer.obj: Stuffer.c Stuffer.h
  18.    cl -c -W4 -AL Stuffer.c
  19.  
  20. GetId.exe: GetId.c
  21.    cl -c -W4 -AL GetId.c
  22.    link GetId.obj, GetId, NUL, llibcep os2,,
  23.