source: rtems/c/src/lib/libbsp/m68k/gen68340/Makefile.am @ 07ce99e

4.104.115
Last change on this file since 07ce99e was 07ce99e, checked in by Joel Sherrill <joel.sherrill@…>, on 09/16/08 at 22:16:25

2008-09-16 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, startup/linkcmds: Use top level shared bsp_get_work_area() implementation.
  • Property mode set to 100644
File size: 1.6 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7include $(top_srcdir)/../../../../automake/compile.am
8include $(top_srcdir)/../../bsp.am
9
10dist_project_lib_DATA = bsp_specs
11
12include_HEADERS = include/bsp.h
13include_HEADERS += include/tm27.h
14
15nodist_include_HEADERS = include/bspopts.h
16DISTCLEANFILES = include/bspopts.h
17noinst_PROGRAMS =
18
19include_HEADERS += include/coverhd.h
20include_HEADERS += include/m340uart.h
21include_HEADERS += include/m340timer.h
22include_HEADERS += include/m68340.h
23include_HEADERS += include/m68340.inc
24include_HEADERS += include/m68349.inc
25
26EXTRA_DIST = start/start.S start/startfor340only.S
27start.$(OBJEXT): start/start.S
28        $(CPPASCOMPILE) -o $@ -c $<
29project_lib_DATA = start.$(OBJEXT)
30
31dist_project_lib_DATA += startup/linkcmds
32
33startup_SOURCES = ../../shared/bspclean.c ../../shared/bsplibc.c \
34    ../../shared/bsppredriverhook.c ../../shared/bspgetworkarea.c \
35    ../../shared/bsppost.c ../../shared/bspstart.c startup/init68340.c \
36    ../../shared/bootcard.c ../../shared/bsppretaskinghook.c \
37    ../../shared/sbrk.c ../../m68k/shared/setvec.c \
38    startup/dumpanic.c ../../shared/gnatinstallhandler.c
39clock_SOURCES = clock/ckinit.c
40console_SOURCES = console/Modif_cpu_asm.S console/console.c \
41    console/m340uart.c ../../shared/dummy_printk_support.c
42timer_SOURCES = timer/timer.c
43
44noinst_LIBRARIES = libbsp.a
45libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
46    $(timer_SOURCES)
47
48libbsp_a_LIBADD = \
49    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
50    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
51
52include $(srcdir)/preinstall.am
53include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.