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

Windows编程

开发平台:

Visual C++

  1. #
  2. # MAKEFILE
  3. # Patron Chapter 1
  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  = patron
  14. OUTFILE = patron01.exe
  15. NOOCLIB = 1
  16. NOUILIB = 1
  17. INCLS    = $(TARGET).H resource.h
  18. OBJS1    = $(TARGET).obj client.obj precomp.obj
  19. OBJS2    = document.obj print.obj
  20. OBJS3    = pages.obj pagewin.obj page.obj
  21. OBJS4    = ""
  22. OBJS5    = ""
  23. OBJS6    = ""
  24. OBJS     = $(OBJS1) $(OBJS2) $(OBJS3)
  25. RCFILES1 = $(TARGET).ico document.ico about.dlg print.dlg
  26. RCFILES2 = gizmo72.bmp gizmo96.bmp gizmo120.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. #Application level things
  33. $(TARGET).obj : $(TARGET).cpp $(INCLS)
  34. client.obj    : client.cpp    $(INCLS)
  35. #Document level things
  36. document.obj  : document.cpp  $(INCLS) pages.h
  37. print.obj     : print.cpp     $(INCLS) pages.h
  38. #Editor level things
  39. pages.obj     : pages.cpp     $(INCLS) pages.h
  40. pagewin.obj   : pagewin.cpp   $(INCLS) pages.h
  41. page.obj      : page.cpp      $(INCLS) pages.h