r-make.dep
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:3k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. #ident "@(#)r-make.dep 1.4 97/02/11 "
  2. ###########################################################################
  3. # Written 1996 by J. Schilling
  4. ###########################################################################
  5. #
  6. # Dependency building rules for make
  7. #
  8. ###########################################################################
  9. # This program is free software; you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation; either version 2, or (at your option)
  12. # any later version.
  13. #
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17. # GNU General Public License for more details.
  18. # You should have received a copy of the GNU General Public License
  19. # along with this program; see the file COPYING.  If not, write to
  20. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21. ###########################################################################
  22. DEP_SUFFIX= .dep
  23. RMDEP= $(RM) $(RM_FORCE) $@
  24. DEP_FILE= $(ARCHDIR)/$(TARGET).dep
  25. PDEP_FILE= $(ARCHDIR)/$(TARGET).dep
  26. PALLDEP_FILE= $(CFILES:%.c=$(ARCHDIR)/%.d) $(ARCHDIR)/$(TARGET).dep
  27. DEP_DEP= $(ARCHDIR)/Dnull
  28. ###########################################################################
  29. depend: rmdep $(DEP_FILE)
  30. rmdep:
  31. $(RM) $(RM_FORCE) $(PALLDEP_FILE)
  32. ###########################################################################
  33. #
  34. # Make the complete path to the architecture subdirectory.
  35. #
  36. ###########################################################################
  37. $(ARCHDIR):
  38. $(MKDIR) -p $@
  39. ###########################################################################
  40. #
  41. # Generate dependency file(s).
  42. # This rules is checked when the dependency file(s) are included.
  43. #
  44. # Modify the the path for .o files to reflect that they are placed in
  45. # $(ARCHDIR). Add the dependency file itself to each line so that
  46. # the dependencies will be rebuilt if a source is newer that the
  47. # appropriate dependency file.
  48. #
  49. ###########################################################################
  50. $(ARCHDIR)/%.dep: %.c
  51. $(MKDEP) $(CPPFLAGS) $(MKDEP_OUT) $< 
  52. | sed -e "s;^(.*).o:;$(ARCHDIR)/1.o $(DEP_FILE):;" > $@
  53. $(DEP_FILE): $(DEP_DEP) $(CFILES)
  54. $(MKDEP) $(CPPFLAGS) $(MKDEP_OUT) $(CFILES) 
  55. | sed -e "s;^(.*).o:;$(ARCHDIR)/1.o $(DEP_FILE):;" > $@
  56. $(DEP_DEP): $(ARCHDIR)
  57. @if [ ! -f $@ ]; then
  58. echo > $@;
  59. fi
  60. ###########################################################################
  61. #
  62. # Include the dependency file(s) generated from the rules above.
  63. #
  64. ###########################################################################
  65. include $(DEP_FILE)