From 7fccd6d655f73d450956d7b063521d3a4953b3f8 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Fri, 12 Dec 2003 13:02:24 +0000 Subject: 2003-12-12 Ralf Corsepius * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES. --- cpukit/score/cpu/arm/ChangeLog | 4 ++++ cpukit/score/cpu/arm/Makefile.am | 6 ++---- cpukit/score/cpu/c4x/ChangeLog | 4 ++++ cpukit/score/cpu/c4x/Makefile.am | 6 ++---- cpukit/score/cpu/h8300/ChangeLog | 4 ++++ cpukit/score/cpu/h8300/Makefile.am | 6 ++---- cpukit/score/cpu/i386/ChangeLog | 4 ++++ cpukit/score/cpu/i386/Makefile.am | 6 ++---- cpukit/score/cpu/i960/ChangeLog | 4 ++++ cpukit/score/cpu/i960/Makefile.am | 6 ++---- cpukit/score/cpu/m68k/ChangeLog | 4 ++++ cpukit/score/cpu/m68k/Makefile.am | 6 ++---- cpukit/score/cpu/mips/ChangeLog | 4 ++++ cpukit/score/cpu/mips/Makefile.am | 6 ++---- cpukit/score/cpu/mips64orion/ChangeLog | 4 ++++ cpukit/score/cpu/mips64orion/Makefile.am | 6 ++---- cpukit/score/cpu/no_cpu/ChangeLog | 4 ++++ cpukit/score/cpu/no_cpu/Makefile.am | 6 ++---- cpukit/score/cpu/or32/ChangeLog | 4 ++++ cpukit/score/cpu/or32/Makefile.am | 6 ++---- cpukit/score/cpu/powerpc/ChangeLog | 4 ++++ cpukit/score/cpu/powerpc/Makefile.am | 15 +++++---------- cpukit/score/cpu/sh/ChangeLog | 4 ++++ cpukit/score/cpu/sh/Makefile.am | 6 ++---- cpukit/score/cpu/sparc/ChangeLog | 4 ++++ cpukit/score/cpu/sparc/Makefile.am | 6 ++---- cpukit/score/cpu/unix/ChangeLog | 4 ++++ cpukit/score/cpu/unix/Makefile.am | 3 +-- 28 files changed, 86 insertions(+), 60 deletions(-) (limited to 'cpukit/score') diff --git a/cpukit/score/cpu/arm/ChangeLog b/cpukit/score/cpu/arm/ChangeLog index 503e2354ae..3508278c6f 100644 --- a/cpukit/score/cpu/arm/ChangeLog +++ b/cpukit/score/cpu/arm/ChangeLog @@ -1,3 +1,7 @@ +2003-12-12 Ralf Corsepius + + * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES. + 2003-12-12 Ralf Corsepius * configure.ac: Require automake >= 1.8, autoconf >= 2.59. diff --git a/cpukit/score/cpu/arm/Makefile.am b/cpukit/score/cpu/arm/Makefile.am index 1ee3e37d8e..ef31feb35d 100644 --- a/cpukit/score/cpu/arm/Makefile.am +++ b/cpukit/score/cpu/arm/Makefile.am @@ -32,18 +32,16 @@ EXTRA_DIST = cpu.c cpu_asm.S PREINSTALL_FILES = $(PROJECT_INCLUDE)/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE) + @$(mkdir_p) $(PROJECT_INCLUDE) @: > $(PROJECT_INCLUDE)/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) $(PROJECT_INCLUDE)/asm.h: asm.h $(PROJECT_INCLUDE)/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score + @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h diff --git a/cpukit/score/cpu/c4x/ChangeLog b/cpukit/score/cpu/c4x/ChangeLog index 323c8f05ba..a2c3791fd1 100644 --- a/cpukit/score/cpu/c4x/ChangeLog +++ b/cpukit/score/cpu/c4x/ChangeLog @@ -1,3 +1,7 @@ +2003-12-12 Ralf Corsepius + + * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES. + 2003-12-12 Ralf Corsepius * configure.ac: Require automake >= 1.8, autoconf >= 2.59. diff --git a/cpukit/score/cpu/c4x/Makefile.am b/cpukit/score/cpu/c4x/Makefile.am index 11bd76c5ba..44c8f1dfc8 100644 --- a/cpukit/score/cpu/c4x/Makefile.am +++ b/cpukit/score/cpu/c4x/Makefile.am @@ -32,9 +32,8 @@ EXTRA_DIST = cpu.c irq.c cpu_asm.S PREINSTALL_FILES = $(PROJECT_INCLUDE)/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE) + @$(mkdir_p) $(PROJECT_INCLUDE) @: > $(PROJECT_INCLUDE)/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) $(PROJECT_INCLUDE)/asm.h: asm.h $(PROJECT_INCLUDE)/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h @@ -45,9 +44,8 @@ $(PROJECT_INCLUDE)/c4xio.h: c4xio.h $(PROJECT_INCLUDE)/$(dirstamp) PREINSTALL_FILES += $(PROJECT_INCLUDE)/c4xio.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score + @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h diff --git a/cpukit/score/cpu/h8300/ChangeLog b/cpukit/score/cpu/h8300/ChangeLog index 27f944ed86..e3c883bec4 100644 --- a/cpukit/score/cpu/h8300/ChangeLog +++ b/cpukit/score/cpu/h8300/ChangeLog @@ -1,3 +1,7 @@ +2003-12-12 Ralf Corsepius + + * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES. + 2003-12-12 Ralf Corsepius * configure.ac: Require automake >= 1.8, autoconf >= 2.59. diff --git a/cpukit/score/cpu/h8300/Makefile.am b/cpukit/score/cpu/h8300/Makefile.am index 2ee08301ca..4bb3832239 100644 --- a/cpukit/score/cpu/h8300/Makefile.am +++ b/cpukit/score/cpu/h8300/Makefile.am @@ -32,18 +32,16 @@ EXTRA_DIST = cpu.c cpu_asm.S PREINSTALL_FILES = $(PROJECT_INCLUDE)/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE) + @$(mkdir_p) $(PROJECT_INCLUDE) @: > $(PROJECT_INCLUDE)/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) $(PROJECT_INCLUDE)/asm.h: asm.h $(PROJECT_INCLUDE)/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score + @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h diff --git a/cpukit/score/cpu/i386/ChangeLog b/cpukit/score/cpu/i386/ChangeLog index aaa6a7b569..895f856bc8 100644 --- a/cpukit/score/cpu/i386/ChangeLog +++ b/cpukit/score/cpu/i386/ChangeLog @@ -1,3 +1,7 @@ +2003-12-12 Ralf Corsepius + + * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES. + 2003-12-12 Ralf Corsepius * configure.ac: Require automake >= 1.8, autoconf >= 2.59. diff --git a/cpukit/score/cpu/i386/Makefile.am b/cpukit/score/cpu/i386/Makefile.am index 17aebe787e..44242da27b 100644 --- a/cpukit/score/cpu/i386/Makefile.am +++ b/cpukit/score/cpu/i386/Makefile.am @@ -33,18 +33,16 @@ EXTRA_DIST = cpu.c cpu_asm.S PREINSTALL_FILES = $(PROJECT_INCLUDE)/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE) + @$(mkdir_p) $(PROJECT_INCLUDE) @: > $(PROJECT_INCLUDE)/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) $(PROJECT_INCLUDE)/asm.h: asm.h $(PROJECT_INCLUDE)/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score + @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h diff --git a/cpukit/score/cpu/i960/ChangeLog b/cpukit/score/cpu/i960/ChangeLog index 9d62112ccb..61a5e0d428 100644 --- a/cpukit/score/cpu/i960/ChangeLog +++ b/cpukit/score/cpu/i960/ChangeLog @@ -1,3 +1,7 @@ +2003-12-12 Ralf Corsepius + + * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES. + 2003-12-12 Ralf Corsepius * configure.ac: Require automake >= 1.8, autoconf >= 2.59. diff --git a/cpukit/score/cpu/i960/Makefile.am b/cpukit/score/cpu/i960/Makefile.am index 16723afdd9..594d5fb205 100644 --- a/cpukit/score/cpu/i960/Makefile.am +++ b/cpukit/score/cpu/i960/Makefile.am @@ -32,18 +32,16 @@ EXTRA_DIST = cpu.c cpu_asm.S i960RP.h PREINSTALL_FILES = $(PROJECT_INCLUDE)/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE) + @$(mkdir_p) $(PROJECT_INCLUDE) @: > $(PROJECT_INCLUDE)/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) $(PROJECT_INCLUDE)/asm.h: asm.h $(PROJECT_INCLUDE)/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score + @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h diff --git a/cpukit/score/cpu/m68k/ChangeLog b/cpukit/score/cpu/m68k/ChangeLog index 6dd42684d6..79268b345e 100644 --- a/cpukit/score/cpu/m68k/ChangeLog +++ b/cpukit/score/cpu/m68k/ChangeLog @@ -1,3 +1,7 @@ +2003-12-12 Ralf Corsepius + + * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES. + 2003-12-12 Ralf Corsepius * configure.ac: Require automake >= 1.8, autoconf >= 2.59. diff --git a/cpukit/score/cpu/m68k/Makefile.am b/cpukit/score/cpu/m68k/Makefile.am index 0b5ab685f7..988b710372 100644 --- a/cpukit/score/cpu/m68k/Makefile.am +++ b/cpukit/score/cpu/m68k/Makefile.am @@ -32,9 +32,8 @@ EXTRA_DIST = cpu.c cpu_asm.S PREINSTALL_FILES = $(PROJECT_INCLUDE)/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE) + @$(mkdir_p) $(PROJECT_INCLUDE) @: > $(PROJECT_INCLUDE)/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) $(PROJECT_INCLUDE)/asm.h: asm.h $(PROJECT_INCLUDE)/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h @@ -57,9 +56,8 @@ $(PROJECT_INCLUDE)/sim.h: sim.h $(PROJECT_INCLUDE)/$(dirstamp) PREINSTALL_FILES += $(PROJECT_INCLUDE)/sim.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score + @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h diff --git a/cpukit/score/cpu/mips/ChangeLog b/cpukit/score/cpu/mips/ChangeLog index 9494d7f018..e64b88369a 100644 --- a/cpukit/score/cpu/mips/ChangeLog +++ b/cpukit/score/cpu/mips/ChangeLog @@ -1,3 +1,7 @@ +2003-12-12 Ralf Corsepius + + * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES. + 2003-12-12 Ralf Corsepius * configure.ac: Require automake >= 1.8, autoconf >= 2.59. diff --git a/cpukit/score/cpu/mips/Makefile.am b/cpukit/score/cpu/mips/Makefile.am index c164c05957..1fbca270b9 100644 --- a/cpukit/score/cpu/mips/Makefile.am +++ b/cpukit/score/cpu/mips/Makefile.am @@ -32,9 +32,8 @@ EXTRA_DIST = cpu.c cpu_asm.S PREINSTALL_FILES = $(PROJECT_INCLUDE)/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE) + @$(mkdir_p) $(PROJECT_INCLUDE) @: > $(PROJECT_INCLUDE)/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) $(PROJECT_INCLUDE)/asm.h: asm.h $(PROJECT_INCLUDE)/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h @@ -49,9 +48,8 @@ $(PROJECT_INCLUDE)/iregdef.h: iregdef.h $(PROJECT_INCLUDE)/$(dirstamp) PREINSTALL_FILES += $(PROJECT_INCLUDE)/iregdef.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score + @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h diff --git a/cpukit/score/cpu/mips64orion/ChangeLog b/cpukit/score/cpu/mips64orion/ChangeLog index f7ce8710a8..ef57b7dcff 100644 --- a/cpukit/score/cpu/mips64orion/ChangeLog +++ b/cpukit/score/cpu/mips64orion/ChangeLog @@ -1,3 +1,7 @@ +2003-12-12 Ralf Corsepius + + * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES. + 2003-12-12 Ralf Corsepius * configure.ac: Require automake >= 1.8, autoconf >= 2.59. diff --git a/cpukit/score/cpu/mips64orion/Makefile.am b/cpukit/score/cpu/mips64orion/Makefile.am index 54e7883805..a54d9b1fb9 100644 --- a/cpukit/score/cpu/mips64orion/Makefile.am +++ b/cpukit/score/cpu/mips64orion/Makefile.am @@ -32,9 +32,8 @@ EXTRA_DIST = cpu.c cpu_asm.S PREINSTALL_FILES = $(PROJECT_INCLUDE)/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE) + @$(mkdir_p) $(PROJECT_INCLUDE) @: > $(PROJECT_INCLUDE)/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) $(PROJECT_INCLUDE)/asm.h: asm.h $(PROJECT_INCLUDE)/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h @@ -57,9 +56,8 @@ $(PROJECT_INCLUDE)/iregdef.h: iregdef.h $(PROJECT_INCLUDE)/$(dirstamp) PREINSTALL_FILES += $(PROJECT_INCLUDE)/iregdef.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score + @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h diff --git a/cpukit/score/cpu/no_cpu/ChangeLog b/cpukit/score/cpu/no_cpu/ChangeLog index 8ae8854a47..e9e9f02e73 100644 --- a/cpukit/score/cpu/no_cpu/ChangeLog +++ b/cpukit/score/cpu/no_cpu/ChangeLog @@ -1,3 +1,7 @@ +2003-12-12 Ralf Corsepius + + * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES. + 2003-12-12 Ralf Corsepius * configure.ac: Require automake >= 1.8, autoconf >= 2.59. diff --git a/cpukit/score/cpu/no_cpu/Makefile.am b/cpukit/score/cpu/no_cpu/Makefile.am index a79abf2a7f..7e16d2bf5f 100644 --- a/cpukit/score/cpu/no_cpu/Makefile.am +++ b/cpukit/score/cpu/no_cpu/Makefile.am @@ -29,18 +29,16 @@ EXTRA_DIST = cpu.c cpu_asm.c PREINSTALL_FILES = $(PROJECT_INCLUDE)/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE) + @$(mkdir_p) $(PROJECT_INCLUDE) @: > $(PROJECT_INCLUDE)/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) $(PROJECT_INCLUDE)/asm.h: asm.h $(PROJECT_INCLUDE)/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score + @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h diff --git a/cpukit/score/cpu/or32/ChangeLog b/cpukit/score/cpu/or32/ChangeLog index 3903bf8ac6..4c4d991b13 100644 --- a/cpukit/score/cpu/or32/ChangeLog +++ b/cpukit/score/cpu/or32/ChangeLog @@ -1,3 +1,7 @@ +2003-12-12 Ralf Corsepius + + * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES. + 2003-12-12 Ralf Corsepius * configure.ac: Require automake >= 1.8, autoconf >= 2.59. diff --git a/cpukit/score/cpu/or32/Makefile.am b/cpukit/score/cpu/or32/Makefile.am index 11b39a7987..2f81d6f4c8 100644 --- a/cpukit/score/cpu/or32/Makefile.am +++ b/cpukit/score/cpu/or32/Makefile.am @@ -29,18 +29,16 @@ EXTRA_DIST = cpu.c cpu_asm.c PREINSTALL_FILES = $(PROJECT_INCLUDE)/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE) + @$(mkdir_p) $(PROJECT_INCLUDE) @: > $(PROJECT_INCLUDE)/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) $(PROJECT_INCLUDE)/asm.h: asm.h $(PROJECT_INCLUDE)/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score + @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h diff --git a/cpukit/score/cpu/powerpc/ChangeLog b/cpukit/score/cpu/powerpc/ChangeLog index 2127603dbd..ab53b727c6 100644 --- a/cpukit/score/cpu/powerpc/ChangeLog +++ b/cpukit/score/cpu/powerpc/ChangeLog @@ -1,3 +1,7 @@ +2003-12-12 Ralf Corsepius + + * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES. + 2003-12-12 Ralf Corsepius * configure.ac: Require automake >= 1.8, autoconf >= 2.59. diff --git a/cpukit/score/cpu/powerpc/Makefile.am b/cpukit/score/cpu/powerpc/Makefile.am index 376b8d0218..bad97dbe93 100644 --- a/cpukit/score/cpu/powerpc/Makefile.am +++ b/cpukit/score/cpu/powerpc/Makefile.am @@ -28,18 +28,16 @@ all-local: $(PREINSTALL_FILES) PREINSTALL_FILES = $(PROJECT_INCLUDE)/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE) + @$(mkdir_p) $(PROJECT_INCLUDE) @: > $(PROJECT_INCLUDE)/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) $(PROJECT_INCLUDE)/asm.h: asm.h $(PROJECT_INCLUDE)/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score + @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(PROJECT_INCLUDE)/rtems/score/ppc.h: rtems/score/ppc.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/ppc.h @@ -54,27 +52,24 @@ $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/old-exceptions/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/old-exceptions + @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/old-exceptions @: > $(PROJECT_INCLUDE)/rtems/old-exceptions/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/old-exceptions/$(dirstamp) $(PROJECT_INCLUDE)/rtems/old-exceptions/cpu.h: rtems/old-exceptions/cpu.h $(PROJECT_INCLUDE)/rtems/old-exceptions/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/old-exceptions/cpu.h PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/old-exceptions/cpu.h $(PROJECT_INCLUDE)/rtems/new-exceptions/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/new-exceptions + @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/new-exceptions @: > $(PROJECT_INCLUDE)/rtems/new-exceptions/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/new-exceptions/$(dirstamp) $(PROJECT_INCLUDE)/rtems/new-exceptions/cpu.h: rtems/new-exceptions/cpu.h $(PROJECT_INCLUDE)/rtems/new-exceptions/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/new-exceptions/cpu.h PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/new-exceptions/cpu.h $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/powerpc + @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/powerpc @: > $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp) $(PROJECT_INCLUDE)/rtems/powerpc/registers.h: rtems/powerpc/registers.h $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/powerpc/registers.h diff --git a/cpukit/score/cpu/sh/ChangeLog b/cpukit/score/cpu/sh/ChangeLog index f2141f984a..40a3e381af 100644 --- a/cpukit/score/cpu/sh/ChangeLog +++ b/cpukit/score/cpu/sh/ChangeLog @@ -1,3 +1,7 @@ +2003-12-12 Ralf Corsepius + + * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES. + 2003-12-12 Ralf Corsepius * configure.ac: Require automake >= 1.8, autoconf >= 2.59. diff --git a/cpukit/score/cpu/sh/Makefile.am b/cpukit/score/cpu/sh/Makefile.am index 098fed44ec..ed8c135863 100644 --- a/cpukit/score/cpu/sh/Makefile.am +++ b/cpukit/score/cpu/sh/Makefile.am @@ -29,18 +29,16 @@ EXTRA_DIST = cpu.c PREINSTALL_FILES = $(PROJECT_INCLUDE)/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE) + @$(mkdir_p) $(PROJECT_INCLUDE) @: > $(PROJECT_INCLUDE)/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) $(PROJECT_INCLUDE)/asm.h: asm.h $(PROJECT_INCLUDE)/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score + @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h diff --git a/cpukit/score/cpu/sparc/ChangeLog b/cpukit/score/cpu/sparc/ChangeLog index 2a6f9bac6d..7f17d0ed07 100644 --- a/cpukit/score/cpu/sparc/ChangeLog +++ b/cpukit/score/cpu/sparc/ChangeLog @@ -1,3 +1,7 @@ +2003-12-12 Ralf Corsepius + + * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES. + 2003-12-12 Ralf Corsepius * configure.ac: Require automake >= 1.8, autoconf >= 2.59. diff --git a/cpukit/score/cpu/sparc/Makefile.am b/cpukit/score/cpu/sparc/Makefile.am index 0a2d896036..5b6c35310c 100644 --- a/cpukit/score/cpu/sparc/Makefile.am +++ b/cpukit/score/cpu/sparc/Makefile.am @@ -32,18 +32,16 @@ EXTRA_DIST = cpu.c cpu_asm.S PREINSTALL_FILES = $(PROJECT_INCLUDE)/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE) + @$(mkdir_p) $(PROJECT_INCLUDE) @: > $(PROJECT_INCLUDE)/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) $(PROJECT_INCLUDE)/asm.h: asm.h $(PROJECT_INCLUDE)/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score + @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(PROJECT_INCLUDE)/rtems/score/sparc.h: rtems/score/sparc.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/sparc.h diff --git a/cpukit/score/cpu/unix/ChangeLog b/cpukit/score/cpu/unix/ChangeLog index 9a1cb5285f..f1b9eeaab1 100644 --- a/cpukit/score/cpu/unix/ChangeLog +++ b/cpukit/score/cpu/unix/ChangeLog @@ -1,3 +1,7 @@ +2003-12-12 Ralf Corsepius + + * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES. + 2003-12-12 Ralf Corsepius * configure.ac: Require automake >= 1.8, autoconf >= 2.59. diff --git a/cpukit/score/cpu/unix/Makefile.am b/cpukit/score/cpu/unix/Makefile.am index 12ed672d21..a35afbc2e5 100644 --- a/cpukit/score/cpu/unix/Makefile.am +++ b/cpukit/score/cpu/unix/Makefile.am @@ -29,9 +29,8 @@ EXTRA_DIST = cpu.c PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score/$(dirstamp): - @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score + @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) -PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h -- cgit v1.2.3