From 42fa2c9244a29384fc264281647066991852471e Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 2 Dec 2003 05:42:26 +0000 Subject: 2003-12-02 Ralf Corsepius * clock/Makefile.am: Remove all-local: $(ARCH). * console/Makefile.am: Remove all-local: $(ARCH). * ide/Makefile.am: Remove all-local: $(ARCH). * irq/Makefile.am: Remove all-local: $(ARCH). * network/Makefile.am: Remove all-local: $(ARCH). * startup/Makefile.am: Remove all-local: $(ARCH). * vectors/Makefile.am: Remove all-local: $(ARCH). * wrapup/Makefile.am: Remove all-local: $(ARCH). --- c/src/lib/libbsp/powerpc/mbx8xx/ChangeLog | 11 +++++++++++ c/src/lib/libbsp/powerpc/mbx8xx/clock/Makefile.am | 2 +- c/src/lib/libbsp/powerpc/mbx8xx/console/Makefile.am | 2 +- c/src/lib/libbsp/powerpc/mbx8xx/ide/Makefile.am | 2 +- c/src/lib/libbsp/powerpc/mbx8xx/irq/Makefile.am | 2 +- c/src/lib/libbsp/powerpc/mbx8xx/network/Makefile.am | 2 +- c/src/lib/libbsp/powerpc/mbx8xx/startup/Makefile.am | 2 +- c/src/lib/libbsp/powerpc/mbx8xx/vectors/Makefile.am | 2 +- c/src/lib/libbsp/powerpc/mbx8xx/wrapup/Makefile.am | 2 +- 9 files changed, 19 insertions(+), 8 deletions(-) (limited to 'c') diff --git a/c/src/lib/libbsp/powerpc/mbx8xx/ChangeLog b/c/src/lib/libbsp/powerpc/mbx8xx/ChangeLog index d29a03eaea..33a5629008 100644 --- a/c/src/lib/libbsp/powerpc/mbx8xx/ChangeLog +++ b/c/src/lib/libbsp/powerpc/mbx8xx/ChangeLog @@ -1,3 +1,14 @@ +2003-12-02 Ralf Corsepius + + * clock/Makefile.am: Remove all-local: $(ARCH). + * console/Makefile.am: Remove all-local: $(ARCH). + * ide/Makefile.am: Remove all-local: $(ARCH). + * irq/Makefile.am: Remove all-local: $(ARCH). + * network/Makefile.am: Remove all-local: $(ARCH). + * startup/Makefile.am: Remove all-local: $(ARCH). + * vectors/Makefile.am: Remove all-local: $(ARCH). + * wrapup/Makefile.am: Remove all-local: $(ARCH). + 2003-10-22 Joel Sherrill PR 510/bsps diff --git a/c/src/lib/libbsp/powerpc/mbx8xx/clock/Makefile.am b/c/src/lib/libbsp/powerpc/mbx8xx/clock/Makefile.am index 9b63f52bb0..fc841b4e1e 100644 --- a/c/src/lib/libbsp/powerpc/mbx8xx/clock/Makefile.am +++ b/c/src/lib/libbsp/powerpc/mbx8xx/clock/Makefile.am @@ -19,6 +19,6 @@ include $(top_srcdir)/../../../../automake/lib.am # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile -all-local: $(ARCH) $(OBJS) +all-local: $(OBJS) include $(top_srcdir)/../../../../automake/local.am diff --git a/c/src/lib/libbsp/powerpc/mbx8xx/console/Makefile.am b/c/src/lib/libbsp/powerpc/mbx8xx/console/Makefile.am index 565ea8f38c..0d451d4e79 100644 --- a/c/src/lib/libbsp/powerpc/mbx8xx/console/Makefile.am +++ b/c/src/lib/libbsp/powerpc/mbx8xx/console/Makefile.am @@ -22,7 +22,7 @@ $(PGM): $(OBJS) # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile -all-local: $(ARCH) $(OBJS) $(PGM) +all-local: $(OBJS) $(PGM) .PRECIOUS: $(PGM) diff --git a/c/src/lib/libbsp/powerpc/mbx8xx/ide/Makefile.am b/c/src/lib/libbsp/powerpc/mbx8xx/ide/Makefile.am index f248a2670a..c6ad6229df 100644 --- a/c/src/lib/libbsp/powerpc/mbx8xx/ide/Makefile.am +++ b/c/src/lib/libbsp/powerpc/mbx8xx/ide/Makefile.am @@ -22,7 +22,7 @@ $(PGM): $(OBJS) # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile -all-local: $(ARCH) $(OBJS) $(PGM) +all-local: $(OBJS) $(PGM) .PRECIOUS: $(PGM) diff --git a/c/src/lib/libbsp/powerpc/mbx8xx/irq/Makefile.am b/c/src/lib/libbsp/powerpc/mbx8xx/irq/Makefile.am index 687943c00d..a171395dcb 100644 --- a/c/src/lib/libbsp/powerpc/mbx8xx/irq/Makefile.am +++ b/c/src/lib/libbsp/powerpc/mbx8xx/irq/Makefile.am @@ -36,7 +36,7 @@ $(PGM): $(OBJS) # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile -all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(PGM) +all-local: $(PREINSTALL_FILES) $(OBJS) $(PGM) EXTRA_DIST = irq.c irq_asm.S irq_init.c diff --git a/c/src/lib/libbsp/powerpc/mbx8xx/network/Makefile.am b/c/src/lib/libbsp/powerpc/mbx8xx/network/Makefile.am index fb1579d949..6adb48797c 100644 --- a/c/src/lib/libbsp/powerpc/mbx8xx/network/Makefile.am +++ b/c/src/lib/libbsp/powerpc/mbx8xx/network/Makefile.am @@ -25,7 +25,7 @@ $(PGM): $(OBJS) # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile if HAS_NETWORKING -all-local: $(ARCH) $(OBJS) $(PGM) +all-local: $(OBJS) $(PGM) endif .PRECIOUS: $(PGM) diff --git a/c/src/lib/libbsp/powerpc/mbx8xx/startup/Makefile.am b/c/src/lib/libbsp/powerpc/mbx8xx/startup/Makefile.am index 80153fbae7..6b23851720 100644 --- a/c/src/lib/libbsp/powerpc/mbx8xx/startup/Makefile.am +++ b/c/src/lib/libbsp/powerpc/mbx8xx/startup/Makefile.am @@ -34,7 +34,7 @@ $(PROJECT_RELEASE)/lib/linkcmds: linkcmds # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds -all-local: $(ARCH) $(OBJS) $(PGM) $(TMPINSTALL_FILES) +all-local: $(OBJS) $(PGM) $(TMPINSTALL_FILES) .PRECIOUS: $(PGM) diff --git a/c/src/lib/libbsp/powerpc/mbx8xx/vectors/Makefile.am b/c/src/lib/libbsp/powerpc/mbx8xx/vectors/Makefile.am index 01186ec9d2..a514a0c181 100644 --- a/c/src/lib/libbsp/powerpc/mbx8xx/vectors/Makefile.am +++ b/c/src/lib/libbsp/powerpc/mbx8xx/vectors/Makefile.am @@ -34,6 +34,6 @@ $(PROJECT_INCLUDE)/bsp/%.h: %.h PREINSTALL_FILES = $(PROJECT_INCLUDE)/bsp \ $(include_bsp_HEADERS:%=$(PROJECT_INCLUDE)/bsp/%) -all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) +all-local: $(PREINSTALL_FILES) $(OBJS) include $(top_srcdir)/../../../../automake/local.am diff --git a/c/src/lib/libbsp/powerpc/mbx8xx/wrapup/Makefile.am b/c/src/lib/libbsp/powerpc/mbx8xx/wrapup/Makefile.am index f084ea7ebb..50a1f1d8f3 100644 --- a/c/src/lib/libbsp/powerpc/mbx8xx/wrapup/Makefile.am +++ b/c/src/lib/libbsp/powerpc/mbx8xx/wrapup/Makefile.am @@ -29,6 +29,6 @@ include $(top_srcdir)/../../../../automake/lib.am $(LIB): $(OBJS) $(make-library) -all-local: $(ARCH) $(LIB) +all-local: $(LIB) include $(top_srcdir)/../../../../automake/local.am -- cgit v1.2.3