Makefile
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. # Makefile for contrib code
  2. #
  3. # The following subdirs don't have a Makefile:
  4. #
  5. #   apache_logging
  6. #   linux
  7. #   mSQL-interface
  8. #   noupdate
  9. #   unixdate
  10. #
  11. # The following subdirs give make errors:
  12. #
  13. #   earthdistance
  14. #   findoidjoins
  15. #   isbn_issn
  16. #   os2client
  17. #   pginterface
  18. all:
  19. for dir in *; do 
  20.     if [ -e $$dir/Makefile ]; then 
  21. $(MAKE) -C $$dir; 
  22.     fi; 
  23. done
  24. install:
  25. for dir in *; do 
  26.     if [ -e $$dir/Makefile ]; then 
  27. $(MAKE) -C $$dir $@ ; 
  28.     fi; 
  29. done
  30. clean:
  31. for dir in *; do 
  32.     if [ -e $$dir/Makefile ]; then 
  33. $(MAKE) -C $$dir $@ ; 
  34.     fi; 
  35. done || exit 0
  36. distclean:
  37. for dir in *; do 
  38.     if [ -e $$dir/Makefile ]; then 
  39. $(MAKE) -C $$dir $@ ; 
  40.     fi; 
  41. done || exit 0