home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / begin / winhelp / makefile < prev    next >
Encoding:
Makefile  |  1995-04-14  |  310 b   |  22 lines

  1.  
  2. # Nmake macros for building Windows 32-Bit apps
  3.  
  4. APPVER=4.0
  5. TARGETOS=WIN95
  6.  
  7. !include <win32.mak>
  8.  
  9. PROJ = sample
  10.  
  11. all: $(PROJ).hlp
  12.  
  13. # Build rule for help file
  14. $(PROJ).hlp: $(PROJ).hpj sample6.rtf
  15.     $(hc) $(PROJ).hpj
  16.  
  17.  
  18.  
  19. # Rules for cleaning out those old files
  20. clean:
  21.     del *.log *.hlp
  22.