2006-03-07 Joel Sherrill <joel@OARcorp.com>

* wrapup/Makefile.am: Correct minor mistake.
This commit is contained in:
Joel Sherrill
2006-03-07 20:50:41 +00:00
parent 3d34e70fc2
commit ec24e12693
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2006-03-07 Joel Sherrill <joel@OARcorp.com>
* wrapup/Makefile.am: Correct minor mistake.
2005-10-05 Jiri Gaisler <jiri@gaisler.com>
Edvin Catovic <edvin@gaisler.com>
Konrad Eisele <konrad@gaisler.com>

View File

@@ -13,7 +13,7 @@ CPU_PIECES = cache reg_win syscall
# bummer; have to use $foreach since % pattern subst rules only replace 1x
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.$(OBJEXT))) \
$(foreach piece, $(CPU_PIECES), ../../../../libcpu/$(RTEMS_CPU)/$(piece)/$(ARCH)/*.$(OBJEXT))
$(foreach piece, $(CPU_PIECES), $(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(piece)/$(ARCH)/*.$(OBJEXT)))
LIB = $(ARCH)/libbsp.a
include $(top_srcdir)/../../../../../../automake/compile.am