home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winui / comctl / reitp / makefile < prev    next >
Encoding:
Makefile  |  1995-05-12  |  778 b   |  27 lines

  1. !include <win32.mak>
  2.  
  3. cflags = -DWINNT $(cflags) 
  4.  
  5. all: reitp.exe
  6.  
  7. reitp.obj: reitp.c
  8.     $(cc) $(cdebug) $(cflags) $(cvars) reitp.c
  9.  
  10. frmtbar.obj: frmtbar.c
  11.     $(cc) $(cdebug) $(cflags) $(cvars) frmtbar.c
  12.  
  13. oleutl.obj: oleutl.c
  14.     $(cc) $(cdebug) $(cflags) $(cvars) oleutl.c
  15.  
  16. drawicon.obj: drawicon.c
  17.     $(cc) $(cdebug) $(cflags) $(cvars) drawicon.c
  18.  
  19. olestd.obj: olestd.c
  20.     $(cc) $(cdebug) $(cflags) $(cvars) olestd.c
  21.  
  22. reitp.res: reitp.rc reitp.h reitp.dlg
  23.     $(rc) $(rcvars) -r -fo reitp.res reitp.rc
  24.  
  25. reitp.exe: reitp.obj reitp.res frmtbar.obj olestd.obj drawicon.obj oleutl.obj
  26.     $(link) $(linkdebug) $(guiflags) -out:reitp.exe reitp.obj reitp.res frmtbar.obj olestd.obj drawicon.obj oleutl.obj $(olelibs) comctl32.lib shell32.lib oledlg.lib
  27.