Patch rtems-rc-19991123-rc-1.diff from Ralf Corsepius

<corsepiu@faw.uni-ulm.de> which implements automake support for some
score/cpu/<RTEMS_CPU> subdirectories and fixes a few minor configuration
bugs.

    To apply:

    rm -rf c/src/exec/score/cpu/i960/wrap
    rm -rf c/src/exec/score/cpu/m68k/wrap
    rm -rf c/src/exec/score/cpu/sh/wrap
    rm -rf c/src/exec/score/cpu/sparc/wrap
    rm -rf c/src/exec/score/cpu/unix/wrap
    patch -p1 < rtems-rc-19991123-rc-1.diff
    ./bootstrap

    Known bugs:

    * "make debug|profile" in c/src/src/score/cpu/<RTEMS_CPU/Makefile does
      not handle recursion to subdirectories correctly (recurses too often).
      However, this issue is hardly visible and should be tolerable for the
      moment.
This commit is contained in:
Joel Sherrill
1999-12-01 14:27:58 +00:00
parent ccf8925b45
commit 7dd4054e86
2 changed files with 5 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ endef
TMPINSTALL_FILES = $(PROJECT_RELEASE)/lib TMPINSTALL_FILES = $(PROJECT_RELEASE)/lib
$(PROJECT_INCLUDE)/lib: $(PROJECT_RELEASE)/lib:
@$(mkinstalldirs) $@ @$(mkinstalldirs) $@
.PRECIOUS: $(LIB) .PRECIOUS: $(LIB)

View File

@@ -109,9 +109,12 @@ distclean-am: distclean-generic clean-am
preinstall-am: preinstall-am:
preinstall: preinstall-am preinstall: preinstall-am
ifndef AUTOMAKE
distclean: distclean-am distclean: distclean-am
-$(RM) config.status -$(RM) ./config.status
clean: clean-am clean: clean-am
endif
.PHONY: distclean distclean-am .PHONY: distclean distclean-am
.PHONY: clean clean-am .PHONY: clean clean-am