home *** CD-ROM | disk | FTP | other *** search
/ PC Press 1997 July / Sezamfile97_2.iso / windows / program / ttychic.exe / TTYCHIC.MAK < prev    next >
Text File  |  1994-12-01  |  371b  |  20 lines

  1. COPT=/nologo /W3 /GX /Zpi /Od /D "_DEBUG" /D "_WINDOWS" /D "_AFXDLL" /D "_MBCS" /D "WIN32" /c
  2.  
  3.  
  4. all: ttychic.exe
  5.  
  6. ttychic.res: ttychic.rc tty.h
  7.         rc -r ttychic.rc
  8.  
  9. ttychic.obj: ttychic.c
  10.         cl $(COPT) ttychic.c
  11.  
  12. newdial.obj: newdial.c
  13.         cl $(COPT) newdial.c
  14.  
  15.  
  16. ttychic.exe: ttychic.obj newdial.obj ttychic.res
  17.         link @linkfile
  18.  
  19.  
  20.