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

5
Last change on this file since f3ce8f41 was f3ce8f41, checked in by Sebastian Huber <sebastian.huber@…>, on 01/02/18 at 07:00:02

bsps: Include bsp.am in all BSP Makefile.am

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
8include $(top_srcdir)/../../bsp.am
9
10include_bspdir = $(includedir)/bsp
11
12dist_project_lib_DATA = bsp_specs
13
14include_HEADERS = include/bsp.h
15include_HEADERS += include/tm27.h
16
17nodist_include_HEADERS = include/bspopts.h
18nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
19nodist_include_bsp_HEADERS += ../../shared/include/console-polled.h
20DISTCLEANFILES = include/bspopts.h
21
22
23noinst_LIBRARIES = libbspstart.a
24libbspstart_a_SOURCES = start/start.S
25project_lib_DATA = start.$(OBJEXT)
26
27dist_project_lib_DATA += startup/linkcmds
28
29noinst_LIBRARIES += libbsp.a
30libbsp_a_SOURCES =
31
32# startup
33libbsp_a_SOURCES += ../../shared/bspclean.c \
34    ../../shared/bsppredriverhook.c \
35    ../../shared/bspgetworkarea.c \
36    ../../shared/bspstart.c ../../shared/bootcard.c ../../shared/sbrk.c \
37    ../../shared/getentropy-cpucounter.c \
38    ../../shared/gnatinstallhandler.c
39libbsp_a_SOURCES += ../../shared/bspreset.c
40# clock
41libbsp_a_SOURCES += ../../shared/clock_driver_simidle.c
42# console
43libbsp_a_SOURCES += ../../shared/console-polled.c console/console-io.c \
44   console/syscalls.S
45# timer
46libbsp_a_SOURCES += ../../shared/timerstub.c
47
48# Cache
49libbsp_a_SOURCES += ../../../libcpu/shared/src/cache_manager.c
50libbsp_a_SOURCES += ../../shared/include/cache_.h
51libbsp_a_CPPFLAGS = -I$(srcdir)/../../shared/include
52
53EXTRA_DIST = times
54
55include $(srcdir)/preinstall.am
56include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.