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

书籍源码

开发平台:

Visual C++

  1. # executable files for this directory
  2. OBJECTS = pow2.exe pow2_try2.exe pow_tbl.exe twosome.exe 
  3.   scope_levels.exe ref-ex.exe scope_levels2.exe 
  4.   print_enum.exe print_enum2.exe
  5. # tells make to use the file "..MS_makefile_template", which
  6. # defines general rules for making .obj and .exe files
  7. include ..MS_makefile_template
  8. # by default, make recompiles a source file any time it changes
  9. # this rule says that decls2.cpp should also be recompiled if
  10. # the file ..1Sales_item.h changes 
  11. decls2.obj: decls2.cc ..1Sales_item.h
  12. # rule to make pow_tbl.exe, which differs from the default rule
  13. # in the makefile template.  pow_tbl must be linked with the
  14. # pow_fcn.obj file --- the code in pow_tbl.cpp calls a function
  15. # defined in pow_fcn.cpp and so both files must be used to
  16. # generate an executable
  17. pow_tbl.exe: pow_tbl.obj pow_fcn.obj
  18. $(CPP) $(CPPFLAGS) pow_tbl.obj pow_fcn.obj -o pow_tbl.exe