makefile
上传用户:itx_2006
上传日期:2007-01-06
资源大小:493k
文件大小:1k
源码类别:

编译器/解释器

开发平台:

Others

  1. #
  2. # Makefile for C++ test examples
  3. # Do a "make CCC=g++" or whatever if your make doesn't define CCC
  4. # as the C++ compile macro.
  5. #
  6. # For SGI machines, we recommend using "-woff 3262" in your CFLAGS
  7. #
  8. #CCC = g++
  9. CCC = CC
  10. make:
  11. -(cd 1; make CCC=$(CCC))
  12. -(cd 2; make CCC=$(CCC))
  13. -(cd 3; make CCC=$(CCC))
  14. -(cd 4; make CCC=$(CCC))
  15. -(cd 5; make CCC=$(CCC))
  16. -(cd 6; make CCC=$(CCC))
  17. -(cd 7; make CCC=$(CCC))
  18. -(cd 8; make CCC=$(CCC))
  19. -(cd 9; make CCC=$(CCC))
  20. -(cd 10; make CCC=$(CCC))
  21. -(cd 11; make CCC=$(CCC))
  22. -(cd 12; make CCC=$(CCC))
  23. -(cd 13; make CCC=$(CCC))
  24. scrub:
  25. (cd 1; make scrub)
  26. (cd 2; make scrub)
  27. (cd 3; make scrub)
  28. (cd 4; make scrub)
  29. (cd 5; make scrub)
  30. (cd 6; make scrub; make -f makefile2 scrub)
  31. (cd 7; make scrub)
  32. (cd 8; make scrub)
  33. (cd 9; make scrub)
  34. (cd 10; make scrub)
  35. (cd 11; make scrub)
  36. (cd 12; make scrub)
  37. (cd 13; make scrub)
  38. tar:
  39. (make scrub; cd ..; tar cvfFF $(ARC)/testcpp.tar test.C++)