home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / winnt / perftool / perfdlls / leakybin / makefile < prev    next >
Makefile  |  1996-07-02  |  1KB  |  49 lines

  1. # THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  2. # ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  3. # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  4. # PARTICULAR PURPOSE.
  5. #
  6. # Copyright (C) 1993 - 1995  Microsoft Corporation.  All Rights Reserved.
  7. #
  8. #
  9. # Processor independent makefile
  10.  
  11. # Nmake macros for building Windows 32-Bit apps
  12. !include <win32.mak>
  13.  
  14. PROJ = LEAKYBIN
  15.  
  16. all: $(PROJ).exe $(PROJ).hlp
  17.  
  18. # Define project specific macros
  19. PROJ_OBJS  = leakybin.obj
  20. BASE_OBJS  =
  21. EXTRA_LIBS = version.lib
  22. GLOBAL_DEP = leakybin.h resource.h
  23. RC_DEP     = resource.h
  24.  
  25.  
  26. # Inference rule for updating the object files
  27. .c.obj:
  28.   $(cc) $(cdebug) $(cflags) $(cvars) $*.c
  29.  
  30. # Build rule for resource file
  31. $(PROJ).res: $(PROJ).rc $(RC_DEP)
  32.     $(rc) $(rcflags) $(rcvars) /fo $(PROJ).res $(PROJ).rc
  33.  
  34. # Build rule for EXE
  35. $(PROJ).EXE: $(BASE_OBJS) $(PROJ_OBJS) $(PROJ).res
  36.     $(link) $(linkdebug) $(guilflags) \
  37.     $(BASE_OBJS) $(PROJ_OBJS) $(PROJ).res $(guilibs) $(EXTRA_LIBS) \
  38.     -out:$(PROJ).exe $(MAPFILE)
  39.  
  40. # Build rule for help file
  41. $(PROJ).hlp: $(PROJ).rtf $(PROJ).hpj
  42.     $(hc) $(PROJ).hpj
  43.  
  44.  
  45.  
  46. # Rules for cleaning out those old files
  47. clean:
  48.     del *.bak *.pdb *.obj *.res *.exp *.map *.sbr *.bsc *.lst *.err
  49.