makefile
上传用户:qdkongtiao
上传日期:2022-06-29
资源大小:356k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. # executable files for this directory
  2. OBJECTS = MS_statmem.exe QueueMain.exe QueueMain2.exe QueueMain3.exe 
  3.   typeid.exe dyn_cast.exe vec.exe vec-opnew.exe
  4. # tells make to use the file "..MS_makefile_template", which
  5. # defines general rules for making .obj and .exe files
  6. include ..MS_makefile_template
  7. # -GR needed to enable the RTTI operators
  8. CPPFLAGS = -GR $(CPPFLAGS) 
  9. # additional dependencies or rules follow --
  10. # see makefile for chapter 2 for additional explanation if needed
  11. QueueMain.exe: QueueMain.cpp MS_Queue.h MS_Queue.cpp
  12. QueueMain2.exe: QueueMain2.cpp MS_Queue.h MS_Queue.cpp
  13. QueueMain3.exe: QueueMain3.cpp MS_Queue.h MS_Queue.cpp