source: rtems/c/src/lib/libbsp/lm32/lm32_evr/Makefile.am @ 74133389

4.104.115
Last change on this file since 74133389 was 74133389, checked in by Joel Sherrill <joel.sherrill@…>, on 02/25/09 at 21:31:23

2009-02-25 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, configure.ac: Add SIMULATOR_FAST_IDLE, BSP_PRESS_KEY_FOR_RESET, and BSP_RESET_BOARD_AT_EXIT. Use the standard bsp_cleanup code.
  • README: New file. Include instructions on gdb simulator.
  • Property mode set to 100644
File size: 1.6 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 += 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
22include_HEADERS += include/coverhd.h
23include_HEADERS += include/system_conf.h
24
25noinst_LIBRARIES = libbspstart.a
26libbspstart_a_SOURCES = ../../lm32/shared/start/start.S
27project_lib_DATA = start.$(OBJEXT)
28
29dist_project_lib_DATA += startup/linkcmds
30
31noinst_LIBRARIES += libbsp.a
32libbsp_a_SOURCES =
33libbsp_a_LIBADD =
34
35# startup
36libbsp_a_SOURCES += ../../shared/bspclean.c ../../shared/bsplibc.c \
37    ../../shared/bsppost.c ../shared/startup/bspstart.c \
38    ../../shared/bspreset.c ../../shared/bsppretaskinghook.c \
39    ../../shared/bspgetworkarea.c ../../shared/bootcard.c \
40    ../../shared/sbrk.c ../../lm32/shared/startup/setvec.c \
41    ../../shared/gnatinstallhandler.c
42# clock
43libbsp_a_SOURCES += ../../lm32/shared/clock/ckinit.c
44# console
45libbsp_a_SOURCES += ../../lm32/shared/console/console.c ../../lm32/shared/console/uart.c
46# timer
47libbsp_a_SOURCES += ../../lm32/shared/timer/timer.c
48
49if HAS_NETWORKING
50noinst_PROGRAMS += network.rel
51network_rel_SOURCES = ../../lm32/shared/tsmac/tsmac.c
52network_rel_CPPFLAGS = $(AM_CPPFLAGS) -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
53network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
54libbsp_a_LIBADD += network.rel
55endif
56
57
58include $(srcdir)/preinstall.am
59include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.