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:10:56 +00:00
parent f3d07e5db5
commit 7820451c5d
2 changed files with 19 additions and 9 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,14 +2,21 @@
## $Id$
##
OBJS = ../pclock$(LIB_VARIANT).rel ../irq$(LIB_VARIANT).rel \
include $(top_srcdir)/../../../../automake/compile.am
EXTRA_LIBRARIES = ../libbsp.a
CLEANFILES = ../libbsp.a
___libbsp_a_SOURCES =
___libbsp_a_LIBADD = ../pclock$(LIB_VARIANT).rel ../irq$(LIB_VARIANT).rel \
../ide$(LIB_VARIANT).rel ../startup$(LIB_VARIANT).rel \
../console$(LIB_VARIANT).rel ../vectors$(LIB_VARIANT).rel
if HAS_NETWORKING
OBJS += ../network$(LIB_VARIANT).rel
___libbsp_a_LIBADD += ../network$(LIB_VARIANT).rel
endif
OBJS += ../../../../libcpu/powerpc/shared/cpuIdent$(LIB_VARIANT).rel \
___libbsp_a_LIBADD += \
../../../../libcpu/powerpc/shared/cpuIdent$(LIB_VARIANT).rel \
../../../../libcpu/powerpc/shared/cache$(LIB_VARIANT).rel \
../@exceptions@/rtems-cpu$(LIB_VARIANT).rel \
../../../../libcpu/powerpc/mpc8xx/clock$(LIB_VARIANT).rel \
@@ -19,12 +26,11 @@ OBJS += ../../../../libcpu/powerpc/shared/cpuIdent$(LIB_VARIANT).rel \
../../../../libcpu/powerpc/mpc8xx/timer$(LIB_VARIANT).rel \
../../../../libcpu/powerpc/mpc8xx/exceptions$(LIB_VARIANT).rel
include $(top_srcdir)/../../../../automake/compile.am
include $(top_srcdir)/../../../../automake/lib.am
EXTRA_LIBRARIES += ../libbsp_g.a
CLEANFILES += ../libbsp_g.a
___libbsp_g_a_SOURCES = $(___libbsp_a_SOURCES)
___libbsp_g_a_LIBADD = $(___libbsp_a_LIBADD)
$(ARCH)/libbsp.a: $(OBJS)
$(make-library)
noinst_DATA = $(ARCH)/libbsp.a
noinst_DATA = ../libbsp$(LIB_VARIANT).a
include $(top_srcdir)/../../../../automake/local.am