From 684eebc86aac72350dd4bbf9ec852efb64bef4af Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 27 Sep 2001 13:24:14 +0000 Subject: 2001-09-23 Ralf Corsepius * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. * Makefile.am: Use 'PREINSTALL_FILES ='. --- c/src/exec/score/cpu/a29k/ChangeLog | 5 +++++ c/src/exec/score/cpu/a29k/Makefile.am | 2 +- c/src/exec/score/cpu/a29k/rtems/score/Makefile.am | 2 +- c/src/exec/score/cpu/arm/ChangeLog | 5 +++++ c/src/exec/score/cpu/arm/Makefile.am | 2 +- c/src/exec/score/cpu/arm/rtems/score/Makefile.am | 2 +- c/src/exec/score/cpu/c4x/ChangeLog | 5 +++++ c/src/exec/score/cpu/c4x/Makefile.am | 2 +- c/src/exec/score/cpu/c4x/rtems/score/Makefile.am | 2 +- c/src/exec/score/cpu/h8300/ChangeLog | 5 +++++ c/src/exec/score/cpu/h8300/Makefile.am | 2 +- c/src/exec/score/cpu/h8300/rtems/score/Makefile.am | 2 +- c/src/exec/score/cpu/hppa1.1/ChangeLog | 5 +++++ c/src/exec/score/cpu/hppa1.1/rtems/score/Makefile.am | 4 ++-- c/src/exec/score/cpu/i386/ChangeLog | 5 +++++ c/src/exec/score/cpu/i386/Makefile.am | 2 +- c/src/exec/score/cpu/i386/rtems/score/Makefile.am | 2 +- c/src/exec/score/cpu/i960/ChangeLog | 5 +++++ c/src/exec/score/cpu/i960/Makefile.am | 2 +- c/src/exec/score/cpu/i960/rtems/score/Makefile.am | 2 +- c/src/exec/score/cpu/m68k/ChangeLog | 5 +++++ c/src/exec/score/cpu/m68k/Makefile.am | 2 +- c/src/exec/score/cpu/m68k/rtems/score/Makefile.am | 2 +- c/src/exec/score/cpu/mips/ChangeLog | 5 +++++ c/src/exec/score/cpu/mips/Makefile.am | 2 +- c/src/exec/score/cpu/mips/rtems/score/Makefile.am | 2 +- c/src/exec/score/cpu/mips64orion/ChangeLog | 5 +++++ c/src/exec/score/cpu/mips64orion/Makefile.am | 2 +- c/src/exec/score/cpu/mips64orion/rtems/score/Makefile.am | 2 +- c/src/exec/score/cpu/no_cpu/ChangeLog | 5 +++++ c/src/exec/score/cpu/no_cpu/Makefile.am | 2 +- c/src/exec/score/cpu/no_cpu/rtems/score/Makefile.am | 2 +- c/src/exec/score/cpu/or16/ChangeLog | 5 +++++ c/src/exec/score/cpu/or16/Makefile.am | 2 +- c/src/exec/score/cpu/or16/rtems/score/Makefile.am | 2 +- c/src/exec/score/cpu/or32/ChangeLog | 5 +++++ c/src/exec/score/cpu/or32/Makefile.am | 2 +- c/src/exec/score/cpu/or32/rtems/score/Makefile.am | 2 +- c/src/exec/score/cpu/sh/ChangeLog | 5 +++++ c/src/exec/score/cpu/sh/Makefile.am | 2 +- c/src/exec/score/cpu/sh/rtems/score/Makefile.am | 2 +- c/src/exec/score/cpu/sparc/ChangeLog | 5 +++++ c/src/exec/score/cpu/sparc/Makefile.am | 2 +- c/src/exec/score/cpu/sparc/rtems/score/Makefile.am | 2 +- 44 files changed, 105 insertions(+), 30 deletions(-) (limited to 'c/src/exec') diff --git a/c/src/exec/score/cpu/a29k/ChangeLog b/c/src/exec/score/cpu/a29k/ChangeLog index 64f0014001..a491685c5f 100644 --- a/c/src/exec/score/cpu/a29k/ChangeLog +++ b/c/src/exec/score/cpu/a29k/ChangeLog @@ -1,3 +1,8 @@ +2001-09-23 Ralf Corsepius + + * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. + * Makefile.am: Use 'PREINSTALL_FILES ='. + 2001-02-04 Ralf Corsepius * Makefile.am, rtems/score/Makefile.am: diff --git a/c/src/exec/score/cpu/a29k/Makefile.am b/c/src/exec/score/cpu/a29k/Makefile.am index e7d78d5ac6..e9977d9df8 100644 --- a/c/src/exec/score/cpu/a29k/Makefile.am +++ b/c/src/exec/score/cpu/a29k/Makefile.am @@ -38,7 +38,7 @@ rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES) $(REL): $(rtems_cpu_rel_OBJECTS) $(make-rel) -PREINSTALL_FILES += $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) +PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o diff --git a/c/src/exec/score/cpu/a29k/rtems/score/Makefile.am b/c/src/exec/score/cpu/a29k/rtems/score/Makefile.am index 198bb6ae23..cff21e3476 100644 --- a/c/src/exec/score/cpu/a29k/rtems/score/Makefile.am +++ b/c/src/exec/score/cpu/a29k/rtems/score/Makefile.am @@ -12,7 +12,7 @@ include_rtems_score_HEADERS = a29k.h a29ktypes.h cpu.h cpu_asm.h # (OPTIONAL) Add local stuff here using += # -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ +PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \ $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h) $(PROJECT_INCLUDE)/rtems/score: diff --git a/c/src/exec/score/cpu/arm/ChangeLog b/c/src/exec/score/cpu/arm/ChangeLog index 4b6c7fe6e1..83b53c1a79 100644 --- a/c/src/exec/score/cpu/arm/ChangeLog +++ b/c/src/exec/score/cpu/arm/ChangeLog @@ -1,3 +1,8 @@ +2001-09-23 Ralf Corsepius + + * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. + * Makefile.am: Use 'PREINSTALL_FILES ='. + 2001-02-04 Ralf Corsepius * Makefile.am, rtems/score/Makefile.am: diff --git a/c/src/exec/score/cpu/arm/Makefile.am b/c/src/exec/score/cpu/arm/Makefile.am index 91d2e5db90..7a0d6f9c98 100644 --- a/c/src/exec/score/cpu/arm/Makefile.am +++ b/c/src/exec/score/cpu/arm/Makefile.am @@ -35,7 +35,7 @@ $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o $(REL): $(rtems_cpu_rel_OBJECTS) $(make-rel) -PREINSTALL_FILES += $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) +PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o diff --git a/c/src/exec/score/cpu/arm/rtems/score/Makefile.am b/c/src/exec/score/cpu/arm/rtems/score/Makefile.am index 7d51bca371..cfe63cd034 100644 --- a/c/src/exec/score/cpu/arm/rtems/score/Makefile.am +++ b/c/src/exec/score/cpu/arm/rtems/score/Makefile.am @@ -11,7 +11,7 @@ include_rtems_score_HEADERS = cpu.h arm.h armtypes.h # (OPTIONAL) Add local stuff here using += # -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ +PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \ $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h) $(PROJECT_INCLUDE)/rtems/score: diff --git a/c/src/exec/score/cpu/c4x/ChangeLog b/c/src/exec/score/cpu/c4x/ChangeLog index 3a276a1c63..4f3ac9d11b 100644 --- a/c/src/exec/score/cpu/c4x/ChangeLog +++ b/c/src/exec/score/cpu/c4x/ChangeLog @@ -1,3 +1,8 @@ +2001-09-23 Ralf Corsepius + + * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. + * Makefile.am: Use 'PREINSTALL_FILES ='. + 2001-02-04 Ralf Corsepius * Makefile.am, rtems/score/Makefile.am: diff --git a/c/src/exec/score/cpu/c4x/Makefile.am b/c/src/exec/score/cpu/c4x/Makefile.am index 8fb27b7afc..4d484cd963 100644 --- a/c/src/exec/score/cpu/c4x/Makefile.am +++ b/c/src/exec/score/cpu/c4x/Makefile.am @@ -35,7 +35,7 @@ $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o $(REL): $(rtems_cpu_rel_OBJECTS) $(make-rel) -PREINSTALL_FILES += $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) +PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o diff --git a/c/src/exec/score/cpu/c4x/rtems/score/Makefile.am b/c/src/exec/score/cpu/c4x/rtems/score/Makefile.am index 165cccc781..97473d70de 100644 --- a/c/src/exec/score/cpu/c4x/rtems/score/Makefile.am +++ b/c/src/exec/score/cpu/c4x/rtems/score/Makefile.am @@ -11,7 +11,7 @@ include_rtems_score_HEADERS = cpu.h c4x.h c4xtypes.h cpu_asm.h # (OPTIONAL) Add local stuff here using += # -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ +PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \ $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h) $(PROJECT_INCLUDE)/rtems/score: diff --git a/c/src/exec/score/cpu/h8300/ChangeLog b/c/src/exec/score/cpu/h8300/ChangeLog index 692508b6ac..f115760ab1 100644 --- a/c/src/exec/score/cpu/h8300/ChangeLog +++ b/c/src/exec/score/cpu/h8300/ChangeLog @@ -1,3 +1,8 @@ +2001-09-23 Ralf Corsepius + + * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. + * Makefile.am: Use 'PREINSTALL_FILES ='. + 2001-02-04 Ralf Corsepius * Makefile.am, rtems/score/Makefile.am: diff --git a/c/src/exec/score/cpu/h8300/Makefile.am b/c/src/exec/score/cpu/h8300/Makefile.am index 33831e1b03..f90702b220 100644 --- a/c/src/exec/score/cpu/h8300/Makefile.am +++ b/c/src/exec/score/cpu/h8300/Makefile.am @@ -35,7 +35,7 @@ $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o $(REL): $(rtems_cpu_rel_OBJECTS) $(make-rel) -PREINSTALL_FILES += $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) +PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o diff --git a/c/src/exec/score/cpu/h8300/rtems/score/Makefile.am b/c/src/exec/score/cpu/h8300/rtems/score/Makefile.am index 1e84fb9160..f8dc349940 100644 --- a/c/src/exec/score/cpu/h8300/rtems/score/Makefile.am +++ b/c/src/exec/score/cpu/h8300/rtems/score/Makefile.am @@ -11,7 +11,7 @@ include_rtems_score_HEADERS = cpu.h h8300.h h8300types.h # (OPTIONAL) Add local stuff here using += # -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ +PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \ $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h) $(PROJECT_INCLUDE)/rtems/score: diff --git a/c/src/exec/score/cpu/hppa1.1/ChangeLog b/c/src/exec/score/cpu/hppa1.1/ChangeLog index 6650b9d195..07641eba51 100644 --- a/c/src/exec/score/cpu/hppa1.1/ChangeLog +++ b/c/src/exec/score/cpu/hppa1.1/ChangeLog @@ -1,3 +1,8 @@ +2001-09-23 Ralf Corsepius + + * rtems/score/Makefile.am: Use 'CLEANFILES ='. + * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. + 2001-02-04 Ralf Corsepius * Makefile.am: Remove references to PROJECT_INCLUDE. diff --git a/c/src/exec/score/cpu/hppa1.1/rtems/score/Makefile.am b/c/src/exec/score/cpu/hppa1.1/rtems/score/Makefile.am index 2a6bfd60fe..93f481ec79 100644 --- a/c/src/exec/score/cpu/hppa1.1/rtems/score/Makefile.am +++ b/c/src/exec/score/cpu/hppa1.1/rtems/score/Makefile.am @@ -20,9 +20,9 @@ offsets.h: $(GENOFFSETS) cpu.h $(RM) $@ $(GENOFFSETS) > $@ -CLEANFILES += offsets.h +CLEANFILES = offsets.h -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ +PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \ $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h) \ $(GENERIC_H_FILES:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h) diff --git a/c/src/exec/score/cpu/i386/ChangeLog b/c/src/exec/score/cpu/i386/ChangeLog index b9e307ce63..29e5ffc235 100644 --- a/c/src/exec/score/cpu/i386/ChangeLog +++ b/c/src/exec/score/cpu/i386/ChangeLog @@ -1,3 +1,8 @@ +2001-09-23 Ralf Corsepius + + * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. + * Makefile.am: Use 'PREINSTALL_FILES ='. + 2001-02-04 Ralf Corsepius * Makefile.am, rtems/score/Makefile.am: diff --git a/c/src/exec/score/cpu/i386/Makefile.am b/c/src/exec/score/cpu/i386/Makefile.am index 329fcf25ef..816f51465f 100644 --- a/c/src/exec/score/cpu/i386/Makefile.am +++ b/c/src/exec/score/cpu/i386/Makefile.am @@ -35,7 +35,7 @@ $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o $(REL): $(rtems_cpu_rel_OBJECTS) $(make-rel) -PREINSTALL_FILES += $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) +PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o diff --git a/c/src/exec/score/cpu/i386/rtems/score/Makefile.am b/c/src/exec/score/cpu/i386/rtems/score/Makefile.am index 9f93029a4f..735603d3e2 100644 --- a/c/src/exec/score/cpu/i386/rtems/score/Makefile.am +++ b/c/src/exec/score/cpu/i386/rtems/score/Makefile.am @@ -11,7 +11,7 @@ include_rtems_score_HEADERS = cpu.h i386.h i386types.h # (OPTIONAL) Add local stuff here using += # -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ +PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \ $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h) $(PROJECT_INCLUDE)/rtems/score: diff --git a/c/src/exec/score/cpu/i960/ChangeLog b/c/src/exec/score/cpu/i960/ChangeLog index 73516788a7..aa5f9e7bee 100644 --- a/c/src/exec/score/cpu/i960/ChangeLog +++ b/c/src/exec/score/cpu/i960/ChangeLog @@ -1,3 +1,8 @@ +2001-09-23 Ralf Corsepius + + * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. + * Makefile.am: Use 'PREINSTALL_FILES ='. + 2001-02-04 Ralf Corsepius * Makefile.am, rtems/score/Makefile.am: diff --git a/c/src/exec/score/cpu/i960/Makefile.am b/c/src/exec/score/cpu/i960/Makefile.am index f85aee2d93..21a6f1748e 100644 --- a/c/src/exec/score/cpu/i960/Makefile.am +++ b/c/src/exec/score/cpu/i960/Makefile.am @@ -35,7 +35,7 @@ rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES) $(REL): $(rtems_cpu_rel_OBJECTS) $(make-rel) -PREINSTALL_FILES += $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) +PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o diff --git a/c/src/exec/score/cpu/i960/rtems/score/Makefile.am b/c/src/exec/score/cpu/i960/rtems/score/Makefile.am index 8199f7e4cc..b7066749e4 100644 --- a/c/src/exec/score/cpu/i960/rtems/score/Makefile.am +++ b/c/src/exec/score/cpu/i960/rtems/score/Makefile.am @@ -11,7 +11,7 @@ include_rtems_score_HEADERS = cpu.h i960.h i960types.h # (OPTIONAL) Add local stuff here using += # -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ +PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \ $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h) $(PROJECT_INCLUDE)/rtems/score: diff --git a/c/src/exec/score/cpu/m68k/ChangeLog b/c/src/exec/score/cpu/m68k/ChangeLog index 8e42f7f373..541e71f64b 100644 --- a/c/src/exec/score/cpu/m68k/ChangeLog +++ b/c/src/exec/score/cpu/m68k/ChangeLog @@ -1,3 +1,8 @@ +2001-09-23 Ralf Corsepius + + * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. + * Makefile.am: Use 'PREINSTALL_FILES ='. + 2001-08-09 Chris Johns * cpu_asm.S: This patch was co-developed with Eric Norum diff --git a/c/src/exec/score/cpu/m68k/Makefile.am b/c/src/exec/score/cpu/m68k/Makefile.am index 125a0217d1..d38771d9e8 100644 --- a/c/src/exec/score/cpu/m68k/Makefile.am +++ b/c/src/exec/score/cpu/m68k/Makefile.am @@ -35,7 +35,7 @@ rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES) $(REL): $(rtems_cpu_rel_OBJECTS) $(make-rel) -PREINSTALL_FILES += $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) +PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o diff --git a/c/src/exec/score/cpu/m68k/rtems/score/Makefile.am b/c/src/exec/score/cpu/m68k/rtems/score/Makefile.am index c9a0772392..73603e6914 100644 --- a/c/src/exec/score/cpu/m68k/rtems/score/Makefile.am +++ b/c/src/exec/score/cpu/m68k/rtems/score/Makefile.am @@ -11,7 +11,7 @@ include_rtems_score_HEADERS = cpu.h m68k.h m68ktypes.h # (OPTIONAL) Add local stuff here using += # -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ +PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \ $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h) $(PROJECT_INCLUDE)/rtems/score: diff --git a/c/src/exec/score/cpu/mips/ChangeLog b/c/src/exec/score/cpu/mips/ChangeLog index 7afe0b8186..bd76b40e0c 100644 --- a/c/src/exec/score/cpu/mips/ChangeLog +++ b/c/src/exec/score/cpu/mips/ChangeLog @@ -1,3 +1,8 @@ +2001-09-23 Ralf Corsepius + + * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. + * Makefile.am: Use 'PREINSTALL_FILES ='. + 2001-07-03 Joel Sherrill * cpu.c: Fixed typo. diff --git a/c/src/exec/score/cpu/mips/Makefile.am b/c/src/exec/score/cpu/mips/Makefile.am index d794212af6..34e1e078be 100644 --- a/c/src/exec/score/cpu/mips/Makefile.am +++ b/c/src/exec/score/cpu/mips/Makefile.am @@ -35,7 +35,7 @@ rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES) $(REL): $(rtems_cpu_rel_OBJECTS) $(make-rel) -PREINSTALL_FILES += $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) +PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o diff --git a/c/src/exec/score/cpu/mips/rtems/score/Makefile.am b/c/src/exec/score/cpu/mips/rtems/score/Makefile.am index 0831821782..7894a8c666 100644 --- a/c/src/exec/score/cpu/mips/rtems/score/Makefile.am +++ b/c/src/exec/score/cpu/mips/rtems/score/Makefile.am @@ -11,7 +11,7 @@ include_rtems_score_HEADERS = cpu.h mips.h mipstypes.h # (OPTIONAL) Add local stuff here using += # -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ +PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \ $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h) $(PROJECT_INCLUDE)/rtems/score: diff --git a/c/src/exec/score/cpu/mips64orion/ChangeLog b/c/src/exec/score/cpu/mips64orion/ChangeLog index a436963719..156781e92a 100644 --- a/c/src/exec/score/cpu/mips64orion/ChangeLog +++ b/c/src/exec/score/cpu/mips64orion/ChangeLog @@ -1,3 +1,8 @@ +2001-09-23 Ralf Corsepius + + * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. + * Makefile.am: Use 'PREINSTALL_FILES ='. + 2001-04-11 Joel Sherrill * cpu.c: Removed duplicate declaration for _ISR_Vector_table. diff --git a/c/src/exec/score/cpu/mips64orion/Makefile.am b/c/src/exec/score/cpu/mips64orion/Makefile.am index 5ed80f86ce..d3c169b280 100644 --- a/c/src/exec/score/cpu/mips64orion/Makefile.am +++ b/c/src/exec/score/cpu/mips64orion/Makefile.am @@ -35,7 +35,7 @@ rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES) $(REL): $(rtems_cpu_rel_OBJECTS) $(make-rel) -PREINSTALL_FILES += $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) +PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o diff --git a/c/src/exec/score/cpu/mips64orion/rtems/score/Makefile.am b/c/src/exec/score/cpu/mips64orion/rtems/score/Makefile.am index c871f36710..b9371f8ef2 100644 --- a/c/src/exec/score/cpu/mips64orion/rtems/score/Makefile.am +++ b/c/src/exec/score/cpu/mips64orion/rtems/score/Makefile.am @@ -11,7 +11,7 @@ include_rtems_score_HEADERS = cpu.h mips64orion.h mipstypes.h # (OPTIONAL) Add local stuff here using += # -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ +PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \ $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h) $(PROJECT_INCLUDE)/rtems/score: diff --git a/c/src/exec/score/cpu/no_cpu/ChangeLog b/c/src/exec/score/cpu/no_cpu/ChangeLog index 3f57f67e7d..86b7519ff6 100644 --- a/c/src/exec/score/cpu/no_cpu/ChangeLog +++ b/c/src/exec/score/cpu/no_cpu/ChangeLog @@ -1,3 +1,8 @@ +2001-09-23 Ralf Corsepius + + * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. + * Makefile.am: Use 'PREINSTALL_FILES ='. + 2001-02-04 Ralf Corsepius * Makefile.am, rtems/score/Makefile.am: diff --git a/c/src/exec/score/cpu/no_cpu/Makefile.am b/c/src/exec/score/cpu/no_cpu/Makefile.am index 07bebb15d9..7a3ba6e76b 100644 --- a/c/src/exec/score/cpu/no_cpu/Makefile.am +++ b/c/src/exec/score/cpu/no_cpu/Makefile.am @@ -32,7 +32,7 @@ $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o $(REL): $(rtems_cpu_rel_OBJECTS) $(make-rel) -PREINSTALL_FILES += $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) +PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o diff --git a/c/src/exec/score/cpu/no_cpu/rtems/score/Makefile.am b/c/src/exec/score/cpu/no_cpu/rtems/score/Makefile.am index 9a4e84f9b7..13bb405434 100644 --- a/c/src/exec/score/cpu/no_cpu/rtems/score/Makefile.am +++ b/c/src/exec/score/cpu/no_cpu/rtems/score/Makefile.am @@ -11,7 +11,7 @@ include_rtems_score_HEADERS = cpu.h no_cpu.h cpu_asm.h no_cputypes.h # (OPTIONAL) Add local stuff here using += # -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ +PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \ $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h) $(PROJECT_INCLUDE)/rtems/score: diff --git a/c/src/exec/score/cpu/or16/ChangeLog b/c/src/exec/score/cpu/or16/ChangeLog index ddd36b3f39..77992c6b2c 100644 --- a/c/src/exec/score/cpu/or16/ChangeLog +++ b/c/src/exec/score/cpu/or16/ChangeLog @@ -1,3 +1,8 @@ +2001-09-23 Ralf Corsepius + + * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. + * Makefile.am: Use 'PREINSTALL_FILES ='. + 2001-02-04 Ralf Corsepius * Makefile.am, rtems/score/Makefile.am: diff --git a/c/src/exec/score/cpu/or16/Makefile.am b/c/src/exec/score/cpu/or16/Makefile.am index 07bebb15d9..7a3ba6e76b 100644 --- a/c/src/exec/score/cpu/or16/Makefile.am +++ b/c/src/exec/score/cpu/or16/Makefile.am @@ -32,7 +32,7 @@ $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o $(REL): $(rtems_cpu_rel_OBJECTS) $(make-rel) -PREINSTALL_FILES += $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) +PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o diff --git a/c/src/exec/score/cpu/or16/rtems/score/Makefile.am b/c/src/exec/score/cpu/or16/rtems/score/Makefile.am index 3830b7932c..5de8404162 100644 --- a/c/src/exec/score/cpu/or16/rtems/score/Makefile.am +++ b/c/src/exec/score/cpu/or16/rtems/score/Makefile.am @@ -11,7 +11,7 @@ include_rtems_score_HEADERS = cpu.h or16.h cpu_asm.h or16types.h # (OPTIONAL) Add local stuff here using += # -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ +PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \ $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h) $(PROJECT_INCLUDE)/rtems/score: diff --git a/c/src/exec/score/cpu/or32/ChangeLog b/c/src/exec/score/cpu/or32/ChangeLog index a2df1c1ed1..9da2b360df 100644 --- a/c/src/exec/score/cpu/or32/ChangeLog +++ b/c/src/exec/score/cpu/or32/ChangeLog @@ -1,3 +1,8 @@ +2001-09-23 Ralf Corsepius + + * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. + * Makefile.am: Use 'PREINSTALL_FILES ='. + 2001-02-04 Ralf Corsepius * Makefile.am, rtems/score/Makefile.am: diff --git a/c/src/exec/score/cpu/or32/Makefile.am b/c/src/exec/score/cpu/or32/Makefile.am index 07bebb15d9..7a3ba6e76b 100644 --- a/c/src/exec/score/cpu/or32/Makefile.am +++ b/c/src/exec/score/cpu/or32/Makefile.am @@ -32,7 +32,7 @@ $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o $(REL): $(rtems_cpu_rel_OBJECTS) $(make-rel) -PREINSTALL_FILES += $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) +PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o diff --git a/c/src/exec/score/cpu/or32/rtems/score/Makefile.am b/c/src/exec/score/cpu/or32/rtems/score/Makefile.am index 02b78c8696..511f86fffe 100644 --- a/c/src/exec/score/cpu/or32/rtems/score/Makefile.am +++ b/c/src/exec/score/cpu/or32/rtems/score/Makefile.am @@ -11,7 +11,7 @@ include_rtems_score_HEADERS = cpu.h or32.h cpu_asm.h or32types.h # (OPTIONAL) Add local stuff here using += # -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ +PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \ $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h) $(PROJECT_INCLUDE)/rtems/score: diff --git a/c/src/exec/score/cpu/sh/ChangeLog b/c/src/exec/score/cpu/sh/ChangeLog index 2e75e8ce33..52251a07a4 100644 --- a/c/src/exec/score/cpu/sh/ChangeLog +++ b/c/src/exec/score/cpu/sh/ChangeLog @@ -1,3 +1,8 @@ +2001-09-23 Ralf Corsepius + + * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. + * Makefile.am: Use 'PREINSTALL_FILES ='. + 2001-07-25 Radzislaw Galler * cpu.c (_CPU_ISR_install_vector): Corrected interrupt range diff --git a/c/src/exec/score/cpu/sh/Makefile.am b/c/src/exec/score/cpu/sh/Makefile.am index ef260425ab..5f5e70fe65 100644 --- a/c/src/exec/score/cpu/sh/Makefile.am +++ b/c/src/exec/score/cpu/sh/Makefile.am @@ -32,7 +32,7 @@ rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(REL): $(rtems_cpu_rel_OBJECTS) $(make-rel) -PREINSTALL_FILES += $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) +PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o diff --git a/c/src/exec/score/cpu/sh/rtems/score/Makefile.am b/c/src/exec/score/cpu/sh/rtems/score/Makefile.am index ded700a931..5083ce29a1 100644 --- a/c/src/exec/score/cpu/sh/rtems/score/Makefile.am +++ b/c/src/exec/score/cpu/sh/rtems/score/Makefile.am @@ -12,7 +12,7 @@ include_rtems_score_HEADERS = cpu.h shtypes.h sh.h sh_io.h # (OPTIONAL) Add local stuff here using += # -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ +PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \ $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h) $(PROJECT_INCLUDE)/rtems/score: diff --git a/c/src/exec/score/cpu/sparc/ChangeLog b/c/src/exec/score/cpu/sparc/ChangeLog index e170e896d7..4269f9e088 100644 --- a/c/src/exec/score/cpu/sparc/ChangeLog +++ b/c/src/exec/score/cpu/sparc/ChangeLog @@ -1,3 +1,8 @@ +2001-09-23 Ralf Corsepius + + * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. + * Makefile.am: Use 'PREINSTALL_FILES ='. + 2001-02-04 Ralf Corsepius * Makefile.am, rtems/score/Makefile.am: diff --git a/c/src/exec/score/cpu/sparc/Makefile.am b/c/src/exec/score/cpu/sparc/Makefile.am index 3f3cd56b8b..a9595c78db 100644 --- a/c/src/exec/score/cpu/sparc/Makefile.am +++ b/c/src/exec/score/cpu/sparc/Makefile.am @@ -35,7 +35,7 @@ $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o $(REL): $(rtems_cpu_rel_OBJECTS) $(make-rel) -PREINSTALL_FILES += $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) +PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o diff --git a/c/src/exec/score/cpu/sparc/rtems/score/Makefile.am b/c/src/exec/score/cpu/sparc/rtems/score/Makefile.am index 5868f2446d..ddd1d73b43 100644 --- a/c/src/exec/score/cpu/sparc/rtems/score/Makefile.am +++ b/c/src/exec/score/cpu/sparc/rtems/score/Makefile.am @@ -12,7 +12,7 @@ include_rtems_score_HEADERS = cpu.h sparc.h sparctypes.h # (OPTIONAL) Add local stuff here using += # -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ +PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \ $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h) $(PROJECT_INCLUDE)/rtems/score: -- cgit v1.2.3