rules.rdi
上传用户:weiliju62
上传日期:2007-01-06
资源大小:619k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. #ident @(#)rules.rdi 1.6 98/09/27 
  2. ###########################################################################
  3. # Written 1996 by J. Schilling
  4. ###########################################################################
  5. #
  6. # DIRS contains the names of all directories where sub make should take place
  7. # This is a modified version for the prokect's root directory
  8. #
  9. ###########################################################################
  10. # This program is free software; you can redistribute it and/or modify
  11. # it under the terms of the GNU General Public License as published by
  12. # the Free Software Foundation; either version 2, or (at your option)
  13. # any later version.
  14. #
  15. # This program is distributed in the hope that it will be useful,
  16. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. # GNU General Public License for more details.
  19. #
  20. # You should have received a copy of the GNU General Public License
  21. # along with this program; see the file COPYING.  If not, write to
  22. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23. ###########################################################################
  24. $(ALLTARGETS):
  25. @ for DIR in $(DIRS) ;
  26. do
  27. (
  28. echo " ==> MAKING "$@" ON SUBDIRECTORY "$(CURDIR)/$$DIR"";
  29. if [ -d ./$$DIR -a -r ./$$DIR/Makefile ] ; then
  30. cd ./$$DIR;$(MAKE) $(MAKEMACS) XARCH=$(XARCH) DIRNAME=$(CURDIR)/$$DIR $@;
  31. else
  32. echo "NOTICE: Partial source ($(CURDIR)/$$DIR) missing";
  33. fi
  34. );
  35. done
  36. ###########################################################################
  37. include $(SRCROOT)/$(RULESDIR)/rules.hlp
  38. ###########################################################################
  39. # Due to a serious bug in SunPRO make we cannot include the configuration
  40. # rules. SunPRO make inconsistsently shortens rules that start with "./"
  41. # and thus wil not find existing rules for a file to be included.
  42. # Due to a bug in GNU make dynamic configuration must have been run before
  43. # C-compiler generated dependency rules are loaded. This is done by running
  44. # make in the 'conf' directory before any other target is made.
  45. #
  46. #include $(SRCROOT)/$(RULESDIR)/rules.cnf
  47. ###########################################################################
  48. config: conf_warn
  49. conf_warn:
  50. @echo "$@: cannot make due to a SunPRO make bug"