MAKEFILE
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  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. # Nmake macros for building Windows 32-Bit apps
  11. !include <win32.mak>
  12. PROJ = GENERIC
  13. all: $(PROJ).exe $(PROJ).hlp
  14. # Define project specific macros
  15. PROJ_OBJS  = generic.obj 
  16. BASE_OBJS  =
  17. EXTRA_LIBS = version.lib
  18. GLOBAL_DEP = generic.h resource.h
  19. RC_DEP     = resource.h
  20. # Inference rule for updating the object files
  21. .c.obj:
  22.   $(cc) $(cdebug) $(cflags) $(cvars) $*.c
  23. # Build rule for resource file
  24. $(PROJ).res: $(PROJ).rc $(RC_DEP)
  25.     $(rc) $(rcflags) $(rcvars) /fo $(PROJ).res $(PROJ).rc
  26. # Build rule for EXE
  27. $(PROJ).EXE: $(BASE_OBJS) $(PROJ_OBJS) $(PROJ).res
  28.     $(link) $(linkdebug) $(guilflags) 
  29.     $(BASE_OBJS) $(PROJ_OBJS) $(PROJ).res $(guilibs) $(EXTRA_LIBS) 
  30.     -out:$(PROJ).exe $(MAPFILE)
  31. # Build rule for help file
  32. $(PROJ).hlp: $(PROJ).rtf $(PROJ).hpj
  33.     $(hc) generic.hpj
  34. # Rules for cleaning out those old files
  35. clean:
  36.     del *.bak *.pdb *.obj *.res *.exp *.map *.sbr *.bsc