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

* console/Makefile.am: Remove all: $(ARCH)..
	* i2c/Makefile.am: Remove all: $(ARCH)..
	* nvram/Makefile.am: Remove all: $(ARCH)..
	* startup/Makefile.am: Remove all: $(ARCH)..
	* tod/Makefile.am: Remove all: $(ARCH)..
	* wrapup/Makefile.am: Remove all: $(ARCH).
	Remove bogus wildcard from CPU_PIECES..
This commit is contained in:
Ralf Corsepius
2003-12-04 18:40:23 +00:00
parent 8347069f0b
commit 2100ade903
7 changed files with 18 additions and 8 deletions

View File

@@ -1,3 +1,13 @@
2003-12-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* console/Makefile.am: Remove all: $(ARCH)..
* i2c/Makefile.am: Remove all: $(ARCH)..
* nvram/Makefile.am: Remove all: $(ARCH)..
* startup/Makefile.am: Remove all: $(ARCH)..
* tod/Makefile.am: Remove all: $(ARCH)..
* wrapup/Makefile.am: Remove all: $(ARCH).
Remove bogus wildcard from CPU_PIECES..
2003-12-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Cosmetics.

View File

@@ -21,7 +21,7 @@ $(PGM): $(OBJS)
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
all: $(ARCH) $(OBJS) $(PGM)
all: $(OBJS) $(PGM)
.PRECIOUS: $(PGM)

View File

@@ -21,7 +21,7 @@ $(PGM): $(OBJS)
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
all: $(ARCH) $(OBJS) $(PGM)
all: $(OBJS) $(PGM)
.PRECIOUS: $(PGM)

View File

@@ -21,7 +21,7 @@ $(PGM): $(OBJS)
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
all: $(ARCH) $(OBJS) $(PGM)
all: $(OBJS) $(PGM)
.PRECIOUS: $(PGM)

View File

@@ -37,7 +37,7 @@ $(PROJECT_RELEASE)/lib/linkcmds.flash: linkcmds.flash
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds \
$(PROJECT_RELEASE)/lib/linkcmds.flash $(PROJECT_RELEASE)/lib/gdbinit
all: $(ARCH) $(OBJS) $(PGM) $(TMPINSTALL_FILES)
all: $(OBJS) $(PGM) $(TMPINSTALL_FILES)
.PRECIOUS: $(PGM)

View File

@@ -23,7 +23,7 @@ $(PGM): $(OBJS)
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
all: $(ARCH) $(OBJS) $(PGM)
all: $(OBJS) $(PGM)
.PRECIOUS: $(PGM)

View File

@@ -10,8 +10,8 @@ CPU_PIECES = clock console timer mbus
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard \
../$(piece)/$(ARCH)/*.$(OBJEXT))) $(wildcard \
../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/*.$(OBJEXT)) \
$(foreach piece, $(CPU_PIECES), $(wildcard \
../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/$(piece)/$(ARCH)/$(piece).rel)) \
$(foreach piece, $(CPU_PIECES), \
../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/$(piece)/$(ARCH)/$(piece).rel) \
$(wildcard \
../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/fpsp/$(ARCH)/fpsp.rel)
LIB = $(ARCH)/libbsp.a
@@ -26,6 +26,6 @@ include $(top_srcdir)/../../../../automake/lib.am
$(LIB): $(OBJS)
$(make-library)
all: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
all: $(OBJS) $(LIB) $(TMPINSTALL_FILES)
include $(top_srcdir)/../../../../automake/local.am