source: rtems/c/src/lib/libbsp/arm/rtl22xx/Makefile.am @ 309dbd0

4.104.115
Last change on this file since 309dbd0 was 309dbd0, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/28/09 at 06:28:41

Whitespace removal.

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