home *** CD-ROM | disk | FTP | other *** search
/ Chip: Windows 95 / WIN95_CD.ISO / sharewar / internet / tapitest / ttest1.mak < prev    next >
Encoding:
Makefile  |  1995-05-22  |  329 b   |  13 lines

  1. !include <ntwin32.mak>
  2.  
  3. all: ttest1.exe
  4.  
  5. ttest1.res: ttest1.rc
  6.    rc -r ttest1.rc
  7.  
  8. ttest1.obj: ttest1.c
  9.    cl -c -Od -Gs -G3 -Zi -W3 -DSTRICT -DWIN32 -D_X86_ ttest1.c
  10.  
  11. ttest1.exe: ttest1.res ttest1.obj
  12.    link -subsystem:windows,4.0 -debug:full -debugtype:cv -machine:IX86 ttest1.res ttest1.obj $(guilibs) tapi32.lib
  13.