source: rtems/c/src/lib/libbsp/moxie/moxiesim/Makefile.am @ 642ef00

5
Last change on this file since 642ef00 was 642ef00, checked in by Sebastian Huber <sebastian.huber@…>, on 11/27/17 at 05:23:29

bsps: Provide <tm27.h> in each BSP

Since the <tm27.h> is highly BSP-dependent and used only by the tm27
test program we must provide this header file for each BSP. Without the
preinstall build target each header file must have a unique source
header file.

Update #3254.

  • Property mode set to 100644
File size: 1.5 KB
Line 
1##
2## $Id: Makefile.am,v 1.36 2008/10/02 21:39:40 joel Exp $
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
18nodist_include_bsp_HEADERS += ../../shared/include/console-polled.h
19DISTCLEANFILES = include/bspopts.h
20
21
22noinst_LIBRARIES = libbspstart.a
23libbspstart_a_SOURCES = start/start.S
24project_lib_DATA = start.$(OBJEXT)
25
26dist_project_lib_DATA += startup/linkcmds
27
28noinst_LIBRARIES += libbsp.a
29libbsp_a_SOURCES =
30
31# startup
32libbsp_a_SOURCES += ../../shared/bspclean.c \
33    ../../shared/bsppredriverhook.c \
34    ../../shared/bspgetworkarea.c \
35    ../../shared/bspstart.c ../../shared/bootcard.c ../../shared/sbrk.c \
36    ../../shared/getentropy-cpucounter.c \
37    ../../shared/gnatinstallhandler.c
38libbsp_a_SOURCES += ../../shared/bspreset.c
39# clock
40libbsp_a_SOURCES += ../../shared/clock_driver_simidle.c
41# console
42libbsp_a_SOURCES += ../../shared/console-polled.c console/console-io.c \
43   console/syscalls.S
44# timer
45libbsp_a_SOURCES += ../../shared/timerstub.c
46
47# Cache
48libbsp_a_SOURCES += ../../../libcpu/shared/src/cache_manager.c
49libbsp_a_SOURCES += ../../shared/include/cache_.h
50libbsp_a_CPPFLAGS = -I$(srcdir)/../../shared/include
51
52EXTRA_DIST = times
53
54include $(srcdir)/preinstall.am
55include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.