home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / S12547.ZIP / TYPER < prev    next >
Text File  |  1990-03-19  |  331b  |  19 lines

  1. CC    =    cl -c -AS -G2sw -Od -W3 -Zpei
  2. LF    =    /align:16 /codeview /map /NOD
  3.  
  4. .c.obj:
  5.     $(CC) $*.c
  6.  
  7. .rc.res:
  8.     rc -r $*.rc
  9.  
  10.  
  11. typer.obj:    typer.c typer.h
  12.  
  13. typer.res:    typer.rc typer.h
  14.  
  15. typer.exe: typer.obj typer.res typer.def typer.lnk
  16.     link $(LF) typer, , , os2 slibcep, typer.def
  17.     rc typer.res
  18.     mapsym typer
  19.