rules1.dir
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. #ident @(#)rules1.dir 1.7 99/12/20 
  2. ###########################################################################
  3. # Written 1996 by J. Schilling
  4. ###########################################################################
  5. #
  6. # DIRS contains the names of all directories where sub make should take place
  7. #
  8. # The code that is shared bwtween rules.dir and rules.rdi
  9. #
  10. ###########################################################################
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2, or (at your option)
  14. # any later version.
  15. #
  16. # This program is distributed in the hope that it will be useful,
  17. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19. # GNU General Public License for more details.
  20. #
  21. # You should have received a copy of the GNU General Public License
  22. # along with this program; see the file COPYING.  If not, write to
  23. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  24. ###########################################################################
  25. $(ALLTARGETS):
  26. @list="$(DIRS)";
  27. [ -d TARGETS -a -f TARGETS/15conf ] && 
  28. list=`echo TARGETS/[0-9][0-9]* | sed -e "s;TARGETS/[0-9][0-9];;g"`;
  29. for DIR in $${list} ;
  30. do
  31. (
  32. echo " ==> MAKING "$@" ON SUBDIRECTORY "$(CURDIR)/$$DIR"";
  33. if [ -d ./$$DIR -a -r ./$$DIR/Makefile ] ; then
  34. cd ./$$DIR;$(MAKE) $(MAKEMACS) XARCH=$(XARCH) DIRNAME=$(CURDIR)/$$DIR $@;
  35. else
  36. echo "NOTICE: Partial source ($(CURDIR)/$$DIR) missing";
  37. fi
  38. );
  39. done
  40. tinfo:
  41. @[ -d TARGETS -a -f TARGETS/15conf ] && list=`echo TARGETS/[0-9][0-9]*`;
  42. for i in $${list};
  43. do
  44. (read line < $$i;
  45. name=`echo $$i | sed -e "s;TARGETS/[0-9][0-9];;"`;
  46. echo "$$name - $${line}";
  47. );
  48. done
  49. ###########################################################################