makefile
Upload User: qdkongtiao
Upload Date: 2022-06-29
Package Size: 356k
Code Size: 1k
Category:

source in ebook

Development Platform:

Visual C++

  1. # executable files for this directory
  2. OBJECTS = inserters.exe use-istream-iter.exe 
  3.   equiv-istream-iter.exe 
  4.   scores.exe rev-iters.exe innerprod.exe 
  5.   use_find.exe vocab.exe elim-dups.exe 
  6.   use_equalrange.exe iostream_iter.exe 
  7.   use-ostream-iter.exe reverse-iter.exe 
  8.   count-size.exe arrow.exe parms.exe
  9. # tells make to use the file "..MS_makefile_template", which
  10. # defines general rules for making .obj and .exe files
  11. include ..MS_makefile_template
  12. # one or more files in this directory includes a header
  13. # defined in chapter 1
  14. LOCFLAGS=-I ..1
  15. # additional dependencies or rules follow --
  16. # see makefile for chapter 2 for additional explanation if needed
  17. count-size.exe: count-size.obj ..7mk_plural2.obj
  18. $(CPP) $(CPPFLAGS) count-size.obj 
  19.                        ..7mk_plural2.obj -o count-size.exe
  20. vocab.exe: vocab.obj ..8get_openfile.obj ..7mk_plural2.obj
  21. $(CPP) $(CPPFLAGS) vocab.obj ..8get_openfile.obj ..7mk_plural2.obj 
  22.                                 -o vocab.exe