source: rtems/c/src/lib/libbsp/m32c/m32cbsp/Makefile.am @ ce0ea6f

5
Last change on this file since ce0ea6f was ce0ea6f, checked in by Sebastian Huber <sebastian.huber@…>, on 04/03/18 at 05:08:24

bsps: Add shared-sources.am

This patch is a part of the BSP source reorganization.

Update #3285.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2
3include $(top_srcdir)/../../../../automake/compile.am
4include $(top_srcdir)/../../bsp.am
5
6dist_project_lib_DATA = startup/bsp_specs
7
8DISTCLEANFILES = include/bspopts.h
9noinst_PROGRAMS =
10
11
12start.$(OBJEXT): start/start.S
13        $(CPPASCOMPILE) -o $@ -c $<
14project_lib_DATA = start.$(OBJEXT)
15
16project_lib_DATA += linkcmds
17
18startup_SOURCES = ../../shared/bspclean.c \
19    ../../shared/bsppredriverhook.c \
20    ../../shared/bspgetworkarea.c \
21    ../../shared/bspreset.c \
22    startup/bspstart.c ../../shared/bootcard.c ../../shared/sbrk.c \
23    ../../shared/getentropy-cpucounter.c \
24    ../../shared/gnatinstallhandler.c startup/crtn.S
25clock_SOURCES = ../../shared/clock_driver_simidle.c
26console_SOURCES = ../../shared/console-polled.c console/console-io.c \
27   console/syscalls.S
28timer_SOURCES = timer/timer.c
29
30noinst_LIBRARIES = libbsp.a
31libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
32    $(timer_SOURCES)
33
34# Cache
35libbsp_a_SOURCES += ../../../../../../bsps/shared/cache/nocache.c
36
37include $(top_srcdir)/../../../../automake/local.am
38include $(srcdir)/../../../../../../bsps/shared/shared-sources.am
39include $(srcdir)/../../../../../../bsps/m32c/m32cbsp/headers.am
Note: See TracBrowser for help on using the repository browser.