source: rtems/c/src/lib/libbsp/m68k/mvme136/Makefile.am @ 2c5862d1

4.104.115
Last change on this file since 2c5862d1 was 2c5862d1, checked in by Joel Sherrill <joel.sherrill@…>, on 09/16/08 at 19:03:34

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

  • Makefile.am, clock/ckinit.c, startup/bspstart.c, startup/linkcmds: Add use of bsp_get_work_area() in its own file and rely on BSP Framework to perform more initialization. Remove unnecessary includes of rtems/libio.h and rtems/libcsupport.h.
  • 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
20
21EXTRA_DIST = ../../m68k/shared/start.S
22start.$(OBJEXT): ../../m68k/shared/start.S
23        $(CPPASCOMPILE) -o $@ -c $<
24
25project_lib_DATA = start.$(OBJEXT)
26
27dist_project_lib_DATA += startup/linkcmds
28
29startup_SOURCES = startup/bspclean.c ../../shared/bsplibc.c \
30    ../../shared/bsppost.c ../../shared/bsppredriverhook.c  \
31    startup/bspstart.c ../../shared/bootcard.c \
32    ../../shared/bsppretaskinghook.c ../../m68k/shared/m68kbspgetworkarea.c \
33    ../../shared/sbrk.c ../../m68k/shared/setvec.c
34gnatsupp_SOURCES = ../../shared/gnatinstallhandler.c
35clock_SOURCES = clock/ckinit.c
36console_SOURCES = console/console.c
37debugio_SOURCES = ../../shared/dummy_printk_support.c
38timer_SOURCES = timer/timer.c timer/timerisr.S
39
40if HAS_MP
41shmsupp_SOURCES = shmsupp/addrconv.c shmsupp/getcfg.c shmsupp/lock.c \
42    shmsupp/mpisr.c
43endif
44
45noinst_LIBRARIES = libbsp.a
46libbsp_a_SOURCES = $(startup_SOURCES) $(gnatsupp_SOURCES) $(clock_SOURCES) \
47    $(console_SOURCES) $(debugio_SOURCES) $(timer_SOURCES) $(shmsupp_SOURCES)
48
49libbsp_a_LIBADD = \
50    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
51    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
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.