source: rtems/c/src/lib/libbsp/m68k/mcf52235/Makefile.am @ ec32100

5
Last change on this file since ec32100 was ec32100, checked in by Sebastian Huber <sebastian.huber@…>, on 01/02/18 at 06:37:44

bsps: Use CPPASCOMPILE for startfile

Update #3254.

  • Property mode set to 100644
File size: 1.5 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2EXTRA_DIST =
3
4include $(top_srcdir)/../../../../automake/compile.am
5include $(top_srcdir)/../../bsp.am
6
7include_bspdir = $(includedir)/bsp
8
9dist_project_lib_DATA = bsp_specs
10
11include_HEADERS = include/bsp.h
12include_HEADERS += include/tm27.h
13
14nodist_include_HEADERS = include/bspopts.h
15nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
16DISTCLEANFILES = include/bspopts.h
17noinst_PROGRAMS =
18
19
20EXTRA_DIST += start/start.S
21start.$(OBJEXT): start/start.S
22        $(CPPASCOMPILE) -o $@ -c $<
23project_lib_DATA = start.$(OBJEXT)
24
25dist_project_lib_DATA += startup/linkcmds
26
27noinst_LIBRARIES = libbsp.a
28libbsp_a_SOURCES =
29
30# startup
31libbsp_a_SOURCES += ../../shared/bspclean.c ../../shared/bsppredriverhook.c \
32    ../../shared/bspreset_loop.c \
33    ../../shared/bspgetworkarea.c \
34    startup/init52235.c ../../shared/bspstart.c startup/cfinit.c \
35    startup/bspgetcpuclockspeed.c ../../shared/bootcard.c \
36    ../../shared/getentropy-cpucounter.c \
37    ../../shared/sbrk.c ../../shared/setvec.c \
38    ../../shared/gnatinstallhandler.c
39# clock
40libbsp_a_SOURCES += clock/clock.c ../../../shared/clockdrv_shell.h
41# console
42libbsp_a_SOURCES += console/console.c
43# debugio
44libbsp_a_SOURCES += console/debugio.c
45# timer
46libbsp_a_SOURCES += timer/timer.c
47
48libbsp_a_LIBADD = \
49    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
50    ../../../libcpu/@RTEMS_CPU@/mcf5223x/cachepd.rel \
51    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
52
53include $(srcdir)/preinstall.am
54include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.