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 - 1997  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 = DECODE
  13. all: $(PROJ).exe 
  14. # Define project specific macros
  15. PROJ_OBJS  = decode.obj
  16. GLOBAL_DEP = decode.h
  17. RC_DEP     = decode.h
  18. # use default inference rule for compiling cpp file
  19. # Build rule for resource file
  20. $(PROJ).res: $(PROJ).rc $(RC_DEP)
  21.     $(rc) $(rcflags) $(rcvars) /fo $(PROJ).res $(PROJ).rc
  22. # Build rule for EXE
  23. $(PROJ).EXE: $(PROJ_OBJS) $(PROJ).res
  24.     $(link) $(linkdebug) $(guilflags) 
  25.     $(PROJ_OBJS) $(PROJ).res $(guilibs) $(EXTRA_LIBS) 
  26.     -out:$(PROJ).exe $(MAPFILE)
  27. # Rules for cleaning out those old files
  28. clean:
  29.     del *.bak *.pdb *.obj *.res *.exp *.map *.sbr *.bsc