home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / win_lrn / tty / tty.mak < prev    next >
Encoding:
Text File  |  1989-03-11  |  349 b   |  26 lines

  1.  
  2. #
  3. #  Standard command line definitions
  4. #
  5.  
  6. cp=cl -d -c -AS -Gsw -Os -Zpei
  7.  
  8. #
  9. #  Standard inference rules
  10. #
  11. .c.obj:
  12.     $(cp) $*.c
  13.  
  14. #
  15. #  The C File List
  16. #
  17.  
  18. TTY.obj: TTY.c TTY.h
  19.  
  20. TTY.res: TTY.rc TTY.ico TTY.h
  21.     rc -r TTY.rc
  22.  
  23. TTY.exe: TTY.obj TTY.res TTY.def
  24.     link4 /NOE/CO TTY,/align:16,/map,slibw,TTY.def
  25.     rc TTY.res
  26.