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

书籍源码

开发平台:

Visual C++

  1. # executable files for this directory
  2. OBJECTS = subscript.exe absInt.exe fcnobj.exe directcall.exe 
  3.   use_chckPtr.exe count-size.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. # one or more files in this directory includes a header
  8. # defined in chapter 11 or 12
  9. LOCFLAGS = -I..11 -I..12
  10. # additional dependencies or rules follow --
  11. # see makefile for chapter 2 for additional explanation if needed
  12. use_chckPtr.obj CheckedPtr.obj: CheckedPtr.h
  13. use_chckPtr.exe: use_chckPtr.obj CheckedPtr.obj
  14. $(CPP) $(CPPFLAGS) use_chckPtr.obj CheckedPtr.obj -o use_chckPtr.exe
  15. directcall.exe: directcall.obj Sales_item.obj
  16. $(CPP) $(CPPFLAGS) directcall.obj Sales_item.obj -o directcall.exe