home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / spezial / 20 / win_txl / txl. < prev    next >
Encoding:
Text File  |  1991-03-12  |  565 b   |  29 lines

  1. all: txl.exe txl.hlp
  2.  
  3. txl.hlp: txl.rtf
  4.     hc txl.hpj
  5.  
  6. txl.res: txl.rc txl.h txl.ico
  7.     rc -r txl.rc
  8.  
  9. wmcom.obj: wmcom.c txl.h
  10.     cl -c -AS -Gsw -Oas -Zpe wmcom.c
  11.  
  12. winprocs.obj: winprocs.c txl.h
  13.     cl -c -AS -Gsw -Oas -Zpe winprocs.c
  14.  
  15. formel.obj: formel.c txl.h
  16.     cl -c -AS -Gsw -Oas -Zpe formel.c
  17.  
  18. txl.obj: txl.c txl.h
  19.     cl -c -AS -Gsw -Oas -Zpe txl.c
  20.  
  21. txl.exe: txl.obj wmcom.obj winprocs.obj formel.obj  txl.def
  22.     link /NOD txl wmcom winprocs formel,,, libw slibcew, txl.def
  23.     rc txl.res
  24.  
  25. txl.exe: txl.res
  26.     rc txl.res
  27.  
  28.  
  29.