source: rtems/c/src/lib/libbsp/bfin/bf537Stamp/Makefile.am @ ca4602e

5
Last change on this file since ca4602e was ca4602e, checked in by Sebastian Huber <sebastian.huber@…>, on 01/25/16 at 21:03:00

Use linker set for libio initialization

Update #2408.

  • Property mode set to 100644
File size: 1.8 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2
3include $(top_srcdir)/../../../../automake/compile.am
4
5include_bspdir = $(includedir)/bsp
6
7dist_project_lib_DATA = bsp_specs
8
9include_HEADERS = include/bsp.h
10include_HEADERS += ../../shared/include/tm27.h
11
12nodist_include_HEADERS = include/bspopts.h
13nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
14DISTCLEANFILES = include/bspopts.h
15
16noinst_PROGRAMS =
17
18include_HEADERS += ../../shared/include/coverhd.h
19
20noinst_LIBRARIES = libbspstart.a
21libbspstart_a_SOURCES = start/start.S
22project_lib_DATA = start.$(OBJEXT)
23
24dist_project_lib_DATA += startup/linkcmds
25
26noinst_LIBRARIES += libbsp.a
27libbsp_a_SOURCES =
28
29libbsp_a_SOURCES += \
30        startup/bspstart.c \
31        ../../shared/bspclean.c ../../shared/sbrk.c ../../shared/setvec.c \
32        ../../shared/bootcard.c ../../shared/gnatinstallhandler.c \
33        ../../shared/bspgetworkarea.c
34
35libbsp_a_SOURCES += console/console.c
36
37if HAS_NETWORKING
38networkconfig_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
39noinst_PROGRAMS += networkconfig.rel
40networkconfig_rel_SOURCES = network/networkconfig.c
41networkconfig_rel_CPPFLAGS = $(AM_CPPFLAGS) $(networkconfig_CPPFLAGS)
42networkconfig_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
43endif
44
45libbsp_a_LIBADD  = ../../../libcpu/@RTEMS_CPU@/mmu.rel
46libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/interrupt.rel
47libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/cache.rel
48libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/uart.rel
49libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/clock.rel
50libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/rtc.rel
51libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/timer.rel
52
53if HAS_NETWORKING
54libbsp_a_LIBADD += networkconfig.rel
55libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/network.rel
56endif
57
58include $(srcdir)/preinstall.am
59include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.