home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / sna / rui3270 / wrui3270.mak < prev    next >
Text File  |  1997-04-09  |  614b  |  28 lines

  1. !if "$(ISVLIBS)"==""
  2. !error "Set ISVLIBS to the directory containing WINRUI.LIB and WINCSV.LIB
  3. !endif
  4. !if "$(ISVINCS)"==""
  5. !error "Set ISVINCS to the directory containing WINRUI.H and WINCSV.H"
  6. !endif
  7.  
  8.  
  9. INCLUDE = $(INCLUDE);$(ISVINCS);
  10. LIB     = $(LIB);$(ISVLIBS);
  11.  
  12. all: wrui3270.exe
  13.  
  14. OPTS = -c -AS -G2sw -Zip -W2 -Od -DWINDOWS
  15. CC = cl $(OPTS)
  16.  
  17. OBJS = wrui3270.obj
  18.  
  19. wrui3270.obj: wrui3270.c
  20.     $(CC) $*.c
  21.  
  22. wrui3270.res: wrui3270.rc
  23.     rc -r  wrui3270.rc
  24.  
  25. wrui3270.exe: $(OBJS) wrui3270.lnk wrui3270.res wrui3270.def wrui3270.rc
  26.     link @wrui3270.lnk
  27.     rc wrui3270.RES wrui3270.exe
  28.