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

SCSI/ASPI

开发平台:

MultiPlatform

  1. #ident "@(#)r-smake.dep 1.7 99/11/01 "
  2. ###########################################################################
  3. # Written 1996 by J. Schilling
  4. ###########################################################################
  5. #
  6. # Dependency building rules for smake
  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. #
  19. # You should have received a copy of the GNU General Public License
  20. # along with this program; see the file COPYING.  If not, write to
  21. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  22. ###########################################################################
  23. DEP_SUFFIX= .d
  24. RMDEP= $(RM) $(RM_FORCE) $(ARCHDIR)/$@
  25. DEP_FILE= $(CFILES:%.c=%.d)
  26. PDEP_FILE= $(CFILES:%.c=$(ARCHDIR)/%.d)
  27. PALLDEP_FILE= $(CFILES:%.c=$(ARCHDIR)/%.d) $(ARCHDIR)/$(TARGET).dep
  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. .d: .c
  51. $(MKDEP) $(CPPFLAGS) $(MKDEP_OUT) $< 
  52. | sed -e "s;^(.*).o:;1.o 1.d:;" > $(ARCHDIR)/$@
  53. %.d: %.c
  54. $(MKDEP) $(CPPFLAGS) $(MKDEP_OUT) $< 
  55. | sed -e "s;^(.*).o:;1.o 1.d:;" > $(ARCHDIR)/$@
  56. Dnull: $(ARCHDIR)
  57. @echo > $O/$@
  58. #$(DEP_FILE):
  59. # $(MKDEP) $(CPPFLAGS) -f - $(CFILES) 
  60. # | sed -e "s;^(.*.o:);$(ARCHDIR)/1;" > $@
  61. ###########################################################################
  62. #
  63. # Include the dependency file(s) generated from the rules above.
  64. #
  65. ###########################################################################
  66. include Dnull $(DEP_FILE)