home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / PJ8_3.ZIP / WINCEL < prev    next >
Text File  |  1990-01-25  |  837b  |  35 lines

  1. # Wincel - Windows cellular automaton demo
  2.  
  3. # Written by Bill Hall
  4. # 3665 Benton Street, #66
  5. # Santa Clara, CA 95051
  6.  
  7. # no debug compile
  8. cp=cl -c -AM -Gsw -W3 -Os -Zpe -FPa
  9.  
  10. # libraries
  11. LIBS=mlibw mlibcaw /NOD
  12.  
  13. # Dependencies
  14. wincel.res : wincel.rc wincel.h wcldlg.h wincel.dlg
  15.     rc -r wincel.rc
  16.  
  17. wincel.obj : wincel.c wincel.h wcldlg.h
  18.     $(cp) -NT _RES wincel.c
  19.  
  20. wincelnt.obj : wincelnt.c wincel.h
  21.     $(cp) -NT _INIT wincelnt.c
  22.  
  23. wincelms.obj : wincelms.c wincel.h wcldlg.h
  24.     $(cp) -NT _MISC wincelms.c
  25.     
  26. wincel.exe : wincel wincel.def wincel.obj wincelnt.obj wincelms.c
  27.     link4 wincel wincelnt wincelms,wincel/align:16,wincel/m,$(LIBS),wincel.def
  28.     rc wincel.res
  29.     mapsym wincel
  30.     mark memory font wincel.exe
  31.  
  32. wincel.exe : wincel.res
  33.     rc wincel.res
  34.     mark memory font wincel.exe
  35.