2004-02-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* wrapup/Makefile.am: Convert to automake-building rules.
This commit is contained in:
Ralf Corsepius
2004-02-06 17:24:21 +00:00
parent 7820451c5d
commit 89b253c6f4
2 changed files with 17 additions and 10 deletions

View File

@@ -1,3 +1,7 @@
2004-02-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* wrapup/Makefile.am: Convert to automake-building rules.
2004-01-31 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,

View File

@@ -2,23 +2,26 @@
## $Id$
##
OBJS = ../startup$(LIB_VARIANT).rel ../clock$(LIB_VARIANT).rel \
include $(top_srcdir)/../../../../automake/compile.am
EXTRA_LIBRARIES = ../libbsp.a
CLEANFILES = ../libbsp.a
___libbsp_a_SOURCES =
___libbsp_a_LIBADD = ../startup$(LIB_VARIANT).rel ../clock$(LIB_VARIANT).rel \
../console$(LIB_VARIANT).rel ../timer$(LIB_VARIANT).rel \
../tod$(LIB_VARIANT).rel ../nvram$(LIB_VARIANT).rel \
../universe$(LIB_VARIANT).rel ../pci$(LIB_VARIANT).rel \
../vectors$(LIB_VARIANT).rel
if HAS_NETWORKING
OBJS += ../network$(LIB_VARIANT).rel
___libbsp_a_LIBADD += ../network$(LIB_VARIANT).rel
endif
___libbsp_a_LIBADD += ../@exceptions@/rtems-cpu$(LIB_VARIANT).rel
OBJS += ../@exceptions@/rtems-cpu$(LIB_VARIANT).rel
EXTRA_LIBRARIES += ../libbsp_g.a
CLEANFILES += ../libbsp_g.a
___libbsp_g_a_SOURCES = $(___libbsp_a_SOURCES)
___libbsp_g_a_LIBADD = $(___libbsp_a_LIBADD)
include $(top_srcdir)/../../../../automake/compile.am
include $(top_srcdir)/../../../../automake/lib.am
$(ARCH)/libbsp.a: $(OBJS)
$(make-library)
noinst_DATA = $(ARCH)/libbsp.a
noinst_DATA = ../libbsp$(LIB_VARIANT).a
include $(top_srcdir)/../../../../automake/local.am