home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / begin / generic / makefile < prev    next >
Makefile  |  1995-05-22  |  1KB  |  50 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 = GENERIC
  15.  
  16. all: $(PROJ).exe $(PROJ).hlp
  17.  
  18. # Define project specific macros
  19. PROJ_OBJS  = generic.obj 
  20. BASE_OBJS  =
  21. EXTRA_LIBS = version.lib
  22. GLOBAL_DEP = generic.h resource.h
  23. RC_DEP     = resource.h
  24.  
  25.  
  26.  
  27. # Inference rule for updating the object files
  28. .c.obj:
  29.   $(cc) $(cdebug) $(cflags) $(cvars) $*.c
  30.  
  31. # Build rule for resource file
  32. $(PROJ).res: $(PROJ).rc $(RC_DEP)
  33.     $(rc) $(rcflags) $(rcvars) /fo $(PROJ).res $(PROJ).rc
  34.  
  35. # Build rule for EXE
  36. $(PROJ).EXE: $(BASE_OBJS) $(PROJ_OBJS) $(PROJ).res
  37.     $(link) $(linkdebug) $(guilflags) \
  38.     $(BASE_OBJS) $(PROJ_OBJS) $(PROJ).res $(guilibs) $(EXTRA_LIBS) \
  39.     -out:$(PROJ).exe $(MAPFILE)
  40.  
  41. # Build rule for help file
  42. $(PROJ).hlp: $(PROJ).rtf $(PROJ).hpj
  43.     $(hc) generic.hpj
  44.  
  45.  
  46.  
  47. # Rules for cleaning out those old files
  48. clean:
  49.     del *.bak *.pdb *.obj *.res *.exp *.map *.sbr *.bsc
  50.