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

Windows编程

开发平台:

Visual C++

  1. #
  2. # MAKEFILE
  3. # Freeloader Chapter 11
  4. #
  5. # Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  6. #
  7. # Kraig Brockschmidt, Microsoft
  8. # Internet  :  kraigb@microsoft.com
  9. # Compuserve:  >INTERNET:kraigb@microsoft.com
  10. #
  11. #Add '#' to the next line for 'noisy' operation
  12. !CMDSWITCHES +s
  13. TARGET  = freeload
  14. OUTFILE = freeload.exe
  15. NOUILIB = 1
  16. NOOCLIB = 1
  17. INCLS    = $(TARGET).h resource.h
  18. OBJS1    = $(TARGET).obj precomp.obj
  19. OBJS2    = client.obj document.obj
  20. OBJS3    = ""
  21. OBJS4    = ""
  22. OBJS5    = ""
  23. OBJS6    = ""
  24. OBJS     = $(OBJS1) $(OBJS2)
  25. RCFILES1 = app.ico document.ico about.dlg
  26. RCFILES2 = stdgz72.bmp stdgz96.bmp stdgz120.bmp
  27. RCFILES  = $(RCFILES1) $(RCFILES2)
  28. !include "..\..\inole-a.mak"
  29. !include "..\..\inole-b.mak"
  30. ##### Dependencies #####
  31. $(TARGET).res : $(TARGET).rc $(INCLS) $(RCFILES)
  32. $(TARGET).obj : $(TARGET).cpp    $(INCLS)
  33.     echo ++++++++++
  34.     echo Compiling $*.cpp
  35.     cl $(CFLAGS) $(DEFS) $(DOC) $*.cpp
  36. client.obj    : client.cpp    $(INCLS)
  37. document.obj  : document.cpp  $(INCLS)