home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / S12602.ZIP / MAKEFILE < prev    next >
Text File  |  1990-05-17  |  402b  |  16 lines

  1. #--------------------
  2. # WELCOME1 make file
  3. #--------------------
  4.  
  5. all: welcome1.exe
  6.  
  7. welcome1.obj : welcome1.c welcome1.h
  8.      cl -c -AL -G2sw -W3 -Od -Zi welcome1.c
  9.  
  10. welcome1.res : welcome1.rc getvalue.dlg getvalue.h
  11.      rc -r welcome1.rc
  12.  
  13. welcome1.exe : welcome1.obj welcome1.def welcome1.res
  14.      link /CO welcome1, /align:16, NUL/NOD/NOE, llibcep os2, welcome1
  15.      rc welcome1.res
  16.