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

书籍源码

开发平台:

Visual C++

  1. # executable files for this directory
  2. OBJECTS = forcount.exe copy_array.exe wdebug.exe nodebug.exe 
  3.   vowels.exe othercnt.exe doWhile.exe exception_example.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 1
  9. LOCFLAGS = -I..1
  10. # additional dependencies or rules follow --
  11. # see makefile for chapter 2 for additional explanation if needed
  12. wdebug.exe: wdebug.cpp
  13. $(CPP) $(CPPFLAGS) wdebug.cpp -o wdebug.exe
  14. nodebug.exe: wdebug.cpp
  15. $(CPP) -D NDEBUG $(CPPFLAGS) wdebug.cpp -o nodebug.exe