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

5
Last change on this file since 9edb72e was 9edb72e, checked in by Sebastian Huber <sebastian.huber@…>, on 04/05/18 at 04:56:26

build: Remove DISTCLEANFILES

A "make distclean" is not supported. So, it makes no sense to have pure
"make distclean" related stuff in the Makefile.am.

  • 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
8noinst_PROGRAMS =
9
10
11start.$(OBJEXT): start/start.S
12        $(CPPASCOMPILE) -o $@ -c $<
13project_lib_DATA = start.$(OBJEXT)
14
15project_lib_DATA += linkcmds
16
17startup_SOURCES = ../../shared/bspclean.c \
18    ../../shared/bsppredriverhook.c \
19    ../../shared/bspgetworkarea.c \
20    ../../shared/bspreset.c \
21    startup/bspstart.c ../../shared/bootcard.c ../../shared/sbrk.c \
22    ../../shared/getentropy-cpucounter.c \
23    ../../shared/gnatinstallhandler.c startup/crtn.S
24clock_SOURCES = ../../shared/clock_driver_simidle.c
25console_SOURCES = ../../shared/console-polled.c console/console-io.c \
26   console/syscalls.S
27timer_SOURCES = timer/timer.c
28
29project_lib_LIBRARIES = librtemsbsp.a
30librtemsbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
31    $(timer_SOURCES)
32
33# Cache
34librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/cache/nocache.c
35
36include $(top_srcdir)/../../../../automake/local.am
37include $(srcdir)/../../../../../../bsps/shared/shared-sources.am
38include $(srcdir)/../../../../../../bsps/m32c/m32cbsp/headers.am
Note: See TracBrowser for help on using the repository browser.