forked from Imagelibrary/rtems
* startup/linkcmds: Include basic linker command file and define only board specific values. Define RAM and PROM limits only if not defined by command line arguments. * Makefile.am, preinstall.am: Reflect changes above.
137 lines
4.1 KiB
Makefile
137 lines
4.1 KiB
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
|
|
|
include $(top_srcdir)/../../../../automake/compile.am
|
|
|
|
include_bspdir = $(includedir)/bsp
|
|
|
|
dist_project_lib_DATA = bsp_specs
|
|
|
|
include_HEADERS = include/bsp.h
|
|
include_HEADERS += include/tm27.h
|
|
include_HEADERS += ../../sparc/shared/include/debug_defs.h
|
|
|
|
nodist_include_HEADERS = include/bspopts.h
|
|
nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
|
|
DISTCLEANFILES = include/bspopts.h
|
|
|
|
noinst_PROGRAMS =
|
|
|
|
# wrapup is the one that actually builds and installs the library
|
|
# from the individual .rel files built in other directories
|
|
SUBDIRS = . tools
|
|
|
|
include_HEADERS += include/leon.h
|
|
include_HEADERS += ../../shared/include/coverhd.h
|
|
|
|
noinst_LIBRARIES = libbspstart.a
|
|
libbspstart_a_SOURCES = ../../sparc/shared/start.S
|
|
project_lib_DATA = start.$(OBJEXT)
|
|
|
|
dist_project_lib_DATA += startup/linkcmds ../shared/startup/linkcmds.base
|
|
|
|
noinst_LIBRARIES += libbsp.a
|
|
libbsp_a_SOURCES =
|
|
|
|
# startup
|
|
libbsp_a_SOURCES += ../../shared/bspclean.c ../../shared/bsplibc.c \
|
|
../../shared/bsppost.c ../../shared/bootcard.c startup/bspstart.c \
|
|
../../sparc/shared/bsppretaskinghook.c \
|
|
../../sparc/shared/bspgetworkarea.c ../../shared/sbrk.c startup/setvec.c \
|
|
startup/spurious.c startup/bspidle.S
|
|
# gnatsupp
|
|
libbsp_a_SOURCES += gnatsupp/gnatsupp.c ../../sparc/shared/gnatcommon.c
|
|
# amba
|
|
include_HEADERS += include/amba.h
|
|
include_HEADERS += ../../sparc/shared/include/ambapp.h
|
|
libbsp_a_SOURCES += amba/amba.c ../../sparc/shared/amba/ambapp.c
|
|
# console
|
|
libbsp_a_SOURCES += console/console.c
|
|
# debugio
|
|
libbsp_a_SOURCES += console/debugputs.c
|
|
# clock
|
|
libbsp_a_SOURCES += clock/ckinit.c ../../../shared/clockdrv_shell.h
|
|
# PCI
|
|
include_HEADERS += ../../sparc/shared/include/pci.h
|
|
libbsp_a_SOURCES += pci/pci.c ../../sparc/shared/pci/pcifinddevice.c
|
|
|
|
# B1553BRM
|
|
include_HEADERS += ../../sparc/shared/include/b1553brm.h \
|
|
../../sparc/shared/include/b1553brm_pci.h
|
|
libbsp_a_SOURCES += ../../sparc/shared/1553/b1553brm.c \
|
|
../../sparc/shared/1553/b1553brm_pci.c
|
|
|
|
# CAN
|
|
include_HEADERS += ../../sparc/shared/include/occan.h \
|
|
../../sparc/shared/include/occan_pci.h ../../sparc/shared/include/grcan.h
|
|
libbsp_a_SOURCES += ../../sparc/shared/can/occan.c \
|
|
../../sparc/shared/can/occan_pci.c ../../sparc/shared/can/grcan.c
|
|
|
|
# SpaceWire
|
|
include_HEADERS += ../../sparc/shared/include/grspw.h \
|
|
../../sparc/shared/include/grspw_pci.h
|
|
libbsp_a_SOURCES += ../../sparc/shared/spw/grspw.c \
|
|
../../sparc/shared/spw/grspw_pci.c
|
|
|
|
# UART
|
|
include_HEADERS += ../../sparc/shared/include/apbuart.h \
|
|
../../sparc/shared/include/apbuart_pci.h
|
|
libbsp_a_SOURCES += ../../sparc/shared/uart/apbuart.c \
|
|
../../sparc/shared/uart/apbuart_pci.c
|
|
|
|
# I2CMST
|
|
include_HEADERS += ../../sparc/shared/include/i2cmst.h
|
|
libbsp_a_SOURCES += ../../sparc/shared/i2c/i2cmst.c
|
|
|
|
# timer
|
|
libbsp_a_SOURCES += timer/timer.c
|
|
|
|
if HAS_NETWORKING
|
|
noinst_PROGRAMS += leon_smc91111.rel
|
|
leon_smc91111_rel_SOURCES = leon_smc91111/leon_smc91111.c
|
|
leon_smc91111_rel_CPPFLAGS = $(AM_CPPFLAGS)
|
|
leon_smc91111_rel_CPPFLAGS += -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
|
|
leon_smc91111_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
|
|
endif
|
|
|
|
if HAS_NETWORKING
|
|
noinst_PROGRAMS += leon_open_eth.rel
|
|
leon_open_eth_rel_SOURCES = leon_open_eth/leon_open_eth.c
|
|
leon_open_eth_rel_CPPFLAGS = $(AM_CPPFLAGS)
|
|
leon_open_eth_rel_CPPFLAGS += -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
|
|
leon_open_eth_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
|
|
endif
|
|
|
|
if HAS_NETWORKING
|
|
noinst_PROGRAMS += leon_greth.rel
|
|
leon_greth_rel_SOURCES = leon_greth/leon_greth.c
|
|
leon_greth_rel_CPPFLAGS = $(AM_CPPFLAGS)
|
|
leon_greth_rel_CPPFLAGS += -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
|
|
leon_greth_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
|
|
endif
|
|
|
|
EXTRA_DIST = shmsupp/README
|
|
if HAS_MP
|
|
# shmsupp
|
|
libbsp_a_SOURCES += shmsupp/addrconv.c shmsupp/getcfg.c shmsupp/lock.c \
|
|
shmsupp/mpisr.c
|
|
endif
|
|
|
|
libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/cache.rel \
|
|
../../../libcpu/@RTEMS_CPU@/reg_win.rel \
|
|
../../../libcpu/@RTEMS_CPU@/syscall.rel
|
|
|
|
if HAS_NETWORKING
|
|
libbsp_a_LIBADD += leon_open_eth.rel
|
|
libbsp_a_LIBADD += leon_greth.rel
|
|
libbsp_a_LIBADD += leon_smc91111.rel
|
|
endif
|
|
|
|
EXTRA_DIST += times
|
|
|
|
include $(srcdir)/preinstall.am
|
|
include $(top_srcdir)/../../../../automake/local.am
|