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 / tpsetup / makefile.win < prev    next >
Makefile  |  1997-04-09  |  427b  |  18 lines

  1. # This is the Windows version of the TP Installation makefile.
  2. all: tpsetup.exe
  3.  
  4. OPTS = -c -AS -G2sw -Zipe -W2 -Od $(DEFINES)
  5. CC = cl $(OPTS)
  6.  
  7. OBJS = install.obj
  8.  
  9. install.obj: install.c install.h
  10.     $(CC) $*.c
  11.  
  12. install.res: install.rc install.h dialogs.h
  13.     rc -r $(DEFINES) install.rc
  14.  
  15. tpsetup.exe: $(OBJS) install.lnk install.res install.def install.rc
  16.     link @install.lnk
  17.     rc install.res tpsetup.exe
  18.