forked from Imagelibrary/rtems
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.am: Eliminate bsp.am. Build startup files as side-effect of building libbspstart.a, using automake-rules.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
|
* Makefile.am: Eliminate bsp.am. Build startup files as side-effect
|
||||||
|
of building libbspstart.a, using automake-rules.
|
||||||
|
|
||||||
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* Makefile.am: Eliminate *_SOURCES.
|
* Makefile.am: Eliminate *_SOURCES.
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
|||||||
SUBDIRS = . tools
|
SUBDIRS = . tools
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../bsp.am
|
|
||||||
|
|
||||||
dist_project_lib_DATA = bsp_specs
|
dist_project_lib_DATA = bsp_specs
|
||||||
|
|
||||||
@@ -22,14 +21,13 @@ DISTCLEANFILES = include/bspopts.h
|
|||||||
include_HEADERS += include/simio.h
|
include_HEADERS += include/simio.h
|
||||||
nodist_include_HEADERS += ../../shared/include/coverhd.h
|
nodist_include_HEADERS += ../../shared/include/coverhd.h
|
||||||
|
|
||||||
EXTRA_DIST = start/start.S
|
noinst_LIBRARIES = libbspstart.a
|
||||||
start.$(OBJEXT): start/start.S
|
libbspstart_a_SOURCES = start/start.S
|
||||||
$(CPPASCOMPILE) -o $@ -c $<
|
|
||||||
project_lib_DATA = start.$(OBJEXT)
|
project_lib_DATA = start.$(OBJEXT)
|
||||||
|
|
||||||
dist_project_lib_DATA += startup/linkcmds
|
dist_project_lib_DATA += startup/linkcmds
|
||||||
|
|
||||||
noinst_LIBRARIES = libbsp.a
|
noinst_LIBRARIES += libbsp.a
|
||||||
libbsp_a_SOURCES =
|
libbsp_a_SOURCES =
|
||||||
|
|
||||||
# startup
|
# startup
|
||||||
@@ -50,7 +48,7 @@ libbsp_a_SOURCES += console/debugio.c
|
|||||||
# timer
|
# timer
|
||||||
libbsp_a_SOURCES += timer/timer.c
|
libbsp_a_SOURCES += timer/timer.c
|
||||||
|
|
||||||
EXTRA_DIST += times
|
EXTRA_DIST = times
|
||||||
|
|
||||||
include $(srcdir)/preinstall.am
|
include $(srcdir)/preinstall.am
|
||||||
include $(top_srcdir)/../../../../automake/local.am
|
include $(top_srcdir)/../../../../automake/local.am
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
|
* Makefile.am: Eliminate bsp.am. Build startup files as side-effect
|
||||||
|
of building libbspstart.a, using automake-rules.
|
||||||
|
|
||||||
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* Makefile.am: Eliminate *_SOURCES.
|
* Makefile.am: Eliminate *_SOURCES.
|
||||||
|
|||||||
@@ -5,7 +5,6 @@
|
|||||||
ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../bsp.am
|
|
||||||
|
|
||||||
include_bspdir = $(includedir)/bsp
|
include_bspdir = $(includedir)/bsp
|
||||||
|
|
||||||
@@ -25,14 +24,13 @@ SUBDIRS = . tools
|
|||||||
include_HEADERS += include/erc32.h
|
include_HEADERS += include/erc32.h
|
||||||
include_HEADERS += include/coverhd.h
|
include_HEADERS += include/coverhd.h
|
||||||
|
|
||||||
EXTRA_DIST = ../../sparc/shared/start.S
|
noinst_LIBRARIES = libbspstart.a
|
||||||
start.$(OBJEXT): ../../sparc/shared/start.S
|
libbspstart_a_SOURCES = ../../sparc/shared/start.S
|
||||||
$(CPPASCOMPILE) -o $@ -c $<
|
|
||||||
project_lib_DATA = start.$(OBJEXT)
|
project_lib_DATA = start.$(OBJEXT)
|
||||||
|
|
||||||
dist_project_lib_DATA += startup/linkcmds
|
dist_project_lib_DATA += startup/linkcmds
|
||||||
|
|
||||||
noinst_LIBRARIES = libbsp.a
|
noinst_LIBRARIES += libbsp.a
|
||||||
libbsp_a_SOURCES =
|
libbsp_a_SOURCES =
|
||||||
|
|
||||||
# startup
|
# startup
|
||||||
@@ -67,7 +65,7 @@ if HAS_NETWORKING
|
|||||||
libbsp_a_LIBADD += erc32sonic.rel
|
libbsp_a_LIBADD += erc32sonic.rel
|
||||||
endif
|
endif
|
||||||
|
|
||||||
EXTRA_DIST += times
|
EXTRA_DIST = times
|
||||||
|
|
||||||
include $(srcdir)/preinstall.am
|
include $(srcdir)/preinstall.am
|
||||||
include $(top_srcdir)/../../../../automake/local.am
|
include $(top_srcdir)/../../../../automake/local.am
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
|
* Makefile.am: Eliminate bsp.am. Build startup files as side-effect
|
||||||
|
of building libbspstart.a, using automake-rules.
|
||||||
|
|
||||||
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* Makefile.am: Eliminate *_SOURCES.
|
* Makefile.am: Eliminate *_SOURCES.
|
||||||
|
|||||||
@@ -5,7 +5,6 @@
|
|||||||
ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../bsp.am
|
|
||||||
|
|
||||||
include_bspdir = $(includedir)/bsp
|
include_bspdir = $(includedir)/bsp
|
||||||
|
|
||||||
@@ -45,15 +44,13 @@ SUBDIRS = . tools
|
|||||||
include_HEADERS += include/leon.h
|
include_HEADERS += include/leon.h
|
||||||
include_HEADERS += include/coverhd.h
|
include_HEADERS += include/coverhd.h
|
||||||
|
|
||||||
EXTRA_DIST = ../../sparc/shared/start.S
|
noinst_LIBRARIES = libbspstart.a
|
||||||
start.$(OBJEXT): ../../sparc/shared/start.S
|
libbspstart_a_SOURCES = ../../sparc/shared/start.S
|
||||||
$(CPPASCOMPILE) -o $@ -c $<
|
|
||||||
|
|
||||||
project_lib_DATA = start.$(OBJEXT)
|
project_lib_DATA = start.$(OBJEXT)
|
||||||
|
|
||||||
dist_project_lib_DATA += startup/linkcmds
|
dist_project_lib_DATA += startup/linkcmds
|
||||||
|
|
||||||
noinst_LIBRARIES = libbsp.a
|
noinst_LIBRARIES += libbsp.a
|
||||||
libbsp_a_SOURCES =
|
libbsp_a_SOURCES =
|
||||||
|
|
||||||
# startup
|
# startup
|
||||||
@@ -69,40 +66,31 @@ libbsp_a_SOURCES += console/console.c console/debugputs.c
|
|||||||
# clock
|
# clock
|
||||||
libbsp_a_SOURCES += clock/ckinit.c
|
libbsp_a_SOURCES += clock/ckinit.c
|
||||||
# AMBA PnP Scanning
|
# AMBA PnP Scanning
|
||||||
# amba
|
|
||||||
libbsp_a_SOURCES += ../../sparc/shared/amba/ambapp.c
|
libbsp_a_SOURCES += ../../sparc/shared/amba/ambapp.c
|
||||||
# PCI
|
# PCI
|
||||||
# pci
|
|
||||||
libbsp_a_SOURCES += pci/pci.c ../../sparc/shared/pci/pcifinddevice.c
|
libbsp_a_SOURCES += pci/pci.c ../../sparc/shared/pci/pcifinddevice.c
|
||||||
# RASTA Kit
|
# RASTA Kit
|
||||||
# rasta
|
|
||||||
libbsp_a_SOURCES += rasta/rasta.c
|
libbsp_a_SOURCES += rasta/rasta.c
|
||||||
# Companion Chip Kit
|
# Companion Chip Kit
|
||||||
# cchip
|
|
||||||
libbsp_a_SOURCES += cchip/cchip.c
|
libbsp_a_SOURCES += cchip/cchip.c
|
||||||
# B1553BRM
|
# B1553BRM
|
||||||
# brm
|
|
||||||
libbsp_a_SOURCES += ../../sparc/shared/1553/b1553brm.c \
|
libbsp_a_SOURCES += ../../sparc/shared/1553/b1553brm.c \
|
||||||
../../sparc/shared/1553/b1553brm_pci.c \
|
../../sparc/shared/1553/b1553brm_pci.c \
|
||||||
../../sparc/shared/1553/b1553brm_rasta.c
|
../../sparc/shared/1553/b1553brm_rasta.c
|
||||||
# CAN
|
# CAN
|
||||||
# can
|
|
||||||
libbsp_a_SOURCES += ../../sparc/shared/can/occan.c \
|
libbsp_a_SOURCES += ../../sparc/shared/can/occan.c \
|
||||||
../../sparc/shared/can/occan_pci.c \
|
../../sparc/shared/can/occan_pci.c \
|
||||||
../../sparc/shared/can/grcan.c \
|
../../sparc/shared/can/grcan.c \
|
||||||
../../sparc/shared/can/grcan_rasta.c
|
../../sparc/shared/can/grcan_rasta.c
|
||||||
# SpaceWire
|
# SpaceWire
|
||||||
# spw
|
|
||||||
libbsp_a_SOURCES += ../../sparc/shared/spw/grspw.c \
|
libbsp_a_SOURCES += ../../sparc/shared/spw/grspw.c \
|
||||||
../../sparc/shared/spw/grspw_pci.c ../../sparc/shared/spw/grspw_rasta.c
|
../../sparc/shared/spw/grspw_pci.c ../../sparc/shared/spw/grspw_rasta.c
|
||||||
# UART (RAW)
|
# UART (RAW)
|
||||||
# uart
|
|
||||||
libbsp_a_SOURCES += ../../sparc/shared/uart/apbuart.c \
|
libbsp_a_SOURCES += ../../sparc/shared/uart/apbuart.c \
|
||||||
../../sparc/shared/uart/apbuart_pci.c \
|
../../sparc/shared/uart/apbuart_pci.c \
|
||||||
../../sparc/shared/uart/apbuart_rasta.c
|
../../sparc/shared/uart/apbuart_rasta.c
|
||||||
# I2CMST
|
# I2CMST
|
||||||
include_HEADERS += ../../sparc/shared/include/i2cmst.h
|
include_HEADERS += ../../sparc/shared/include/i2cmst.h
|
||||||
# i2cmst
|
|
||||||
libbsp_a_SOURCES += ../../sparc/shared/i2c/i2cmst.c
|
libbsp_a_SOURCES += ../../sparc/shared/i2c/i2cmst.c
|
||||||
|
|
||||||
# timer
|
# timer
|
||||||
@@ -134,7 +122,7 @@ libbsp_a_LIBADD += leon_open_eth.rel
|
|||||||
libbsp_a_LIBADD += leon_smc91111.rel
|
libbsp_a_LIBADD += leon_smc91111.rel
|
||||||
endif
|
endif
|
||||||
|
|
||||||
EXTRA_DIST += times
|
EXTRA_DIST = times
|
||||||
|
|
||||||
include $(srcdir)/preinstall.am
|
include $(srcdir)/preinstall.am
|
||||||
include $(top_srcdir)/../../../../automake/local.am
|
include $(top_srcdir)/../../../../automake/local.am
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
|
* Makefile.am: Eliminate bsp.am. Build startup files as side-effect
|
||||||
|
of building libbspstart.a, using automake-rules.
|
||||||
|
|
||||||
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* Makefile.am: Eliminate *_SOURCES.
|
* Makefile.am: Eliminate *_SOURCES.
|
||||||
|
|||||||
@@ -5,7 +5,6 @@
|
|||||||
ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../bsp.am
|
|
||||||
|
|
||||||
include_bspdir = $(includedir)/bsp
|
include_bspdir = $(includedir)/bsp
|
||||||
|
|
||||||
@@ -28,15 +27,13 @@ SUBDIRS = . tools
|
|||||||
include_HEADERS += include/leon.h
|
include_HEADERS += include/leon.h
|
||||||
include_HEADERS += include/coverhd.h
|
include_HEADERS += include/coverhd.h
|
||||||
|
|
||||||
EXTRA_DIST = ../../sparc/shared/start.S
|
noinst_LIBRARIES = libbspstart.a
|
||||||
start.$(OBJEXT): ../../sparc/shared/start.S
|
libbspstart_a_SOURCES = ../../sparc/shared/start.S
|
||||||
$(CPPASCOMPILE) -o $@ -c $<
|
|
||||||
|
|
||||||
project_lib_DATA = start.$(OBJEXT)
|
project_lib_DATA = start.$(OBJEXT)
|
||||||
|
|
||||||
dist_project_lib_DATA += startup/linkcmds
|
dist_project_lib_DATA += startup/linkcmds
|
||||||
|
|
||||||
noinst_LIBRARIES = libbsp.a
|
noinst_LIBRARIES += libbsp.a
|
||||||
libbsp_a_SOURCES =
|
libbsp_a_SOURCES =
|
||||||
|
|
||||||
# startup
|
# startup
|
||||||
@@ -62,40 +59,34 @@ libbsp_a_SOURCES += clock/ckinit.c
|
|||||||
|
|
||||||
# PCI
|
# PCI
|
||||||
include_HEADERS += ../../sparc/shared/include/pci.h
|
include_HEADERS += ../../sparc/shared/include/pci.h
|
||||||
# pci
|
|
||||||
libbsp_a_SOURCES += pci/pci.c ../../sparc/shared/pci/pcifinddevice.c
|
libbsp_a_SOURCES += pci/pci.c ../../sparc/shared/pci/pcifinddevice.c
|
||||||
|
|
||||||
# B1553BRM
|
# B1553BRM
|
||||||
include_HEADERS += ../../sparc/shared/include/b1553brm.h \
|
include_HEADERS += ../../sparc/shared/include/b1553brm.h \
|
||||||
../../sparc/shared/include/b1553brm_pci.h
|
../../sparc/shared/include/b1553brm_pci.h
|
||||||
# brm
|
|
||||||
libbsp_a_SOURCES += ../../sparc/shared/1553/b1553brm.c \
|
libbsp_a_SOURCES += ../../sparc/shared/1553/b1553brm.c \
|
||||||
../../sparc/shared/1553/b1553brm_pci.c
|
../../sparc/shared/1553/b1553brm_pci.c
|
||||||
|
|
||||||
# CAN
|
# CAN
|
||||||
include_HEADERS += ../../sparc/shared/include/occan.h \
|
include_HEADERS += ../../sparc/shared/include/occan.h \
|
||||||
../../sparc/shared/include/occan_pci.h ../../sparc/shared/include/grcan.h
|
../../sparc/shared/include/occan_pci.h ../../sparc/shared/include/grcan.h
|
||||||
# can
|
|
||||||
libbsp_a_SOURCES += ../../sparc/shared/can/occan.c \
|
libbsp_a_SOURCES += ../../sparc/shared/can/occan.c \
|
||||||
../../sparc/shared/can/occan_pci.c ../../sparc/shared/can/grcan.c
|
../../sparc/shared/can/occan_pci.c ../../sparc/shared/can/grcan.c
|
||||||
|
|
||||||
# SpaceWire
|
# SpaceWire
|
||||||
include_HEADERS += ../../sparc/shared/include/grspw.h \
|
include_HEADERS += ../../sparc/shared/include/grspw.h \
|
||||||
../../sparc/shared/include/grspw_pci.h
|
../../sparc/shared/include/grspw_pci.h
|
||||||
# spw
|
|
||||||
libbsp_a_SOURCES += ../../sparc/shared/spw/grspw.c \
|
libbsp_a_SOURCES += ../../sparc/shared/spw/grspw.c \
|
||||||
../../sparc/shared/spw/grspw_pci.c
|
../../sparc/shared/spw/grspw_pci.c
|
||||||
|
|
||||||
# UART
|
# UART
|
||||||
include_HEADERS += ../../sparc/shared/include/apbuart.h \
|
include_HEADERS += ../../sparc/shared/include/apbuart.h \
|
||||||
../../sparc/shared/include/apbuart_pci.h
|
../../sparc/shared/include/apbuart_pci.h
|
||||||
# uart
|
|
||||||
libbsp_a_SOURCES += ../../sparc/shared/uart/apbuart.c \
|
libbsp_a_SOURCES += ../../sparc/shared/uart/apbuart.c \
|
||||||
../../sparc/shared/uart/apbuart_pci.c
|
../../sparc/shared/uart/apbuart_pci.c
|
||||||
|
|
||||||
# I2CMST
|
# I2CMST
|
||||||
include_HEADERS += ../../sparc/shared/include/i2cmst.h
|
include_HEADERS += ../../sparc/shared/include/i2cmst.h
|
||||||
# i2cmst
|
|
||||||
libbsp_a_SOURCES += ../../sparc/shared/i2c/i2cmst.c
|
libbsp_a_SOURCES += ../../sparc/shared/i2c/i2cmst.c
|
||||||
|
|
||||||
# timer
|
# timer
|
||||||
@@ -125,8 +116,8 @@ leon_greth_rel_CPPFLAGS += -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
|
|||||||
leon_greth_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
|
leon_greth_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
EXTRA_DIST = shmsupp/README
|
||||||
if HAS_MP
|
if HAS_MP
|
||||||
EXTRA_DIST += shmsupp/README
|
|
||||||
# shmsupp
|
# shmsupp
|
||||||
libbsp_a_SOURCES += shmsupp/addrconv.c shmsupp/getcfg.c shmsupp/lock.c \
|
libbsp_a_SOURCES += shmsupp/addrconv.c shmsupp/getcfg.c shmsupp/lock.c \
|
||||||
shmsupp/mpisr.c
|
shmsupp/mpisr.c
|
||||||
|
|||||||
Reference in New Issue
Block a user