home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / windows / crane.zip / CRANE next >
Text File  |  1989-12-21  |  726b  |  39 lines

  1. # Dependency declarations by file types:
  2.  
  3. CO=-c -AM -Gsw -Od -Zpie -FPa -W3
  4. LO=/CO
  5.  
  6. .C.OBJ:
  7.      cl $(CO) -NT _$* $*.C > $*.ERR
  8.      type $*.ERR
  9.  
  10. .RC.RES:
  11.      rc -r $*.RC > $*.ERC
  12.      type $*.ERC
  13.  
  14. .OBJ.EXE:
  15.      link4 $(LO) @$*.LNK > $*.ERL
  16.      type $*.ERL
  17.      rc -l $*.RES > $*.ERX
  18.      type $*.ERX
  19.      mapsym /l $* > $*.ERM
  20.      type $*.ERM
  21.  
  22. # Dependency execution:
  23.  
  24. CRANE.OBJ:     CRANE.C \
  25.                CRANE.H \
  26.                DIALOGS.H
  27.  
  28. CRANE.RES:     CRANE.RC \
  29.                CRANE.H \
  30.                DIALOGS.H \
  31.                CRANE.ICO \
  32.                CRANE.DLG
  33.  
  34. CRANE.EXE:     CRANE.OBJ \
  35.                CRANE.RES \
  36.                CRANE.LNK \
  37.                CRANE.DEF
  38.  
  39.