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

* wrapup/Makefile.am: Use SRC += instead of make-vars.
This commit is contained in:
Ralf Corsepius
2003-03-04 11:27:58 +00:00
parent 4638a5f021
commit d24f574e07
2 changed files with 17 additions and 13 deletions

View File

@@ -1,3 +1,7 @@
2003-03-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* wrapup/Makefile.am: Use SRC += instead of make-vars.
2003-02-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2003-02-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: AM_INIT_AUTOMAKE([1.7.2]). * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).

View File

@@ -9,29 +9,29 @@ include $(top_srcdir)/../../automake/lib.am
LIB = $(PROJECT_RELEASE)/lib/librtemsbsp${LIB_VARIANT}.a LIB = $(PROJECT_RELEASE)/lib/librtemsbsp${LIB_VARIANT}.a
SRCS =
if HAS_LIBBSP
SRCS += ../lib/libbsp/@RTEMS_CPU@/@RTEMS_BSP_FAMILY@/wrapup/$(ARCH)/libbsp.a
endif
if HAS_NETWORKING if HAS_NETWORKING
LIBNETWORKING = ../libnetworking/wrapup/$(ARCH)/libnetapps.a SRCS += ../libnetworking/wrapup/$(ARCH)/libnetapps.a
endif endif
if HAS_RDBG if HAS_RDBG
LIBRDBG = $(PROJECT_RELEASE)/lib/librdbg$(LIB_VARIANT).a SRCS += $(PROJECT_RELEASE)/lib/librdbg$(LIB_VARIANT).a
endif endif
if HAS_LIBBSP SRCS += $(wildcard $(PROJECT_RELEASE)/lib/libcpu$(LIB_VARIANT).a)
LIBBSP = ../lib/libbsp/@RTEMS_CPU@/@RTEMS_BSP_FAMILY@/wrapup/$(ARCH)/libbsp.a
endif
if LIBCHIP if LIBCHIP
LIBCHIP = \ SRCS += ../libchip/rtc/$(ARCH)/librtcio.a
../libchip/rtc/$(ARCH)/librtcio.a \ SRCS += ../libchip/serial/$(ARCH)/libserialio.a
../libchip/serial/$(ARCH)/libserialio.a \ SRCS += $(wildcard $(PROJECT_RELEASE)/lib/libnetchip$(LIB_VARIANT).a)
$(wildcard $(PROJECT_RELEASE)/lib/libnetchip$(LIB_VARIANT).a)
endif endif
SRCS = $(LIBBSP) $(LIBNETWORKING) $(LIBRDBG) \ SRCS += $(wildcard $(PROJECT_RELEASE)/lib/rtems-ctor$(LIB_VARIANT).$(OBJEXT))
$(wildcard $(PROJECT_RELEASE)/lib/libcpu$(LIB_VARIANT).a) \
$(LIBCHIP) \
$(wildcard $(PROJECT_RELEASE)/lib/rtems-ctor$(LIB_VARIANT).$(OBJEXT))
TMPINSTALL_FILES += $(LIB) TMPINSTALL_FILES += $(LIB)