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

书籍源码

开发平台:

Visual C++

  1. # executable files for this directory
  2. OBJECTS = use-handle.exe book.exe
  3. # tells make to use the file "..MS_makefile_template", which
  4. # defines general rules for making .obj and .exe files
  5. include ..MS_makefile_template
  6. # additional dependencies or rules follow --
  7. # see makefile for chapter 2 for additional explanation if needed
  8. # MS compiler does not appear to handle try blocks on 
  9. # template constructors
  10. use-handle.obj: MS_Handle.h
  11. Sales_item.obj book.obj: Sales_item.h
  12. book.exe: Sales_item.obj book.obj 
  13. $(CPP) $(CPPFLAGS) book.obj Sales_item.obj -o book.exe