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

SCSI/ASPI

开发平台:

MultiPlatform

  1. #ident "@(#)r-smake.dep 1.6 97/02/18 "
  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. # 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= .d
  23. RMDEP= $(RM) $(RM_FORCE) $(ARCHDIR)/$@
  24. DEP_FILE= $(CFILES:%.c=%.d)
  25. PDEP_FILE= $(CFILES:%.c=$(ARCHDIR)/%.d)
  26. PALLDEP_FILE= $(CFILES:%.c=$(ARCHDIR)/%.d) $(ARCHDIR)/$(TARGET).dep
  27. ###########################################################################
  28. depend: rmdep $(DEP_FILE)
  29. rmdep:
  30. $(RM) $(RM_FORCE) $(PALLDEP_FILE)
  31. ###########################################################################
  32. #
  33. # Make the complete path to the architecture subdirectory.
  34. #
  35. ###########################################################################
  36. $(ARCHDIR):
  37. $(MKDIR) -p $@
  38. ###########################################################################
  39. #
  40. # Generate dependency file(s).
  41. # This rules is checked when the dependency file(s) are included.
  42. #
  43. # Modify the the path for .o files to reflect that they are placed in
  44. # $(ARCHDIR). Add the dependency file itself to each line so that
  45. # the dependencies will be rebuilt if a source is newer that the
  46. # appropriate dependency file.
  47. #
  48. ###########################################################################
  49. .d= .c
  50. $(MKDEP) $(CPPFLAGS) $(MKDEP_OUT)  $< 
  51. | sed -e "s;^(.*).o:;1.o 1.d:;" > $(ARCHDIR)/$@
  52. Dnull: $(ARCHDIR)
  53. @echo > $O/$@
  54. #$(DEP_FILE):
  55. # $(MKDEP) $(CPPFLAGS) -f - $(CFILES) 
  56. # | sed -e "s;^(.*.o:);$(ARCHDIR)/1;" > $@
  57. ###########################################################################
  58. #
  59. # Include the dependency file(s) generated from the rules above.
  60. #
  61. ###########################################################################
  62. include Dnull $(DEP_FILE)