2003-12-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* clock/Makefile.am: Remove all-local: $(ARCH).
	* console/Makefile.am: Remove all-local: $(ARCH).
	* irq/Makefile.am: Remove all-local: $(ARCH).
	* network/Makefile.am: Remove all-local: $(ARCH).
	* start/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).
This commit is contained in:
Ralf Corsepius
2003-12-02 05:42:38 +00:00
parent 03db12e9f1
commit 07c03cba5e
9 changed files with 19 additions and 8 deletions

View File

@@ -1,3 +1,14 @@
2003-12-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* clock/Makefile.am: Remove all-local: $(ARCH).
* console/Makefile.am: Remove all-local: $(ARCH).
* irq/Makefile.am: Remove all-local: $(ARCH).
* network/Makefile.am: Remove all-local: $(ARCH).
* start/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 <joel@OARcorp.com>
PR 510/bsps

View File

@@ -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

View File

@@ -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)

View File

@@ -34,7 +34,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.h irq_asm.S irq_init.c

View File

@@ -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)

View File

@@ -23,7 +23,7 @@ $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start.$(OBJEXT)
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
all-local: $(ARCH) $(OBJS) $(ARCH)/start.$(OBJEXT) $(TMPINSTALL_FILES)
all-local: $(OBJS) $(ARCH)/start.$(OBJEXT) $(TMPINSTALL_FILES)
.PRECIOUS: $(ARCH)/start.$(OBJEXT)

View File

@@ -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)

View File

@@ -33,6 +33,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

View File

@@ -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