source: rtems/c/src/lib/libbsp/no_cpu/no_bsp/Makefile.am @ b1ded240

4.104.115
Last change on this file since b1ded240 was eb3923b, checked in by Joel Sherrill <joel.sherrill@…>, on 09/14/08 at 22:03:54

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

  • Makefile.am, configure.ac, startup/bspstart.c: Create bsp_get_work_area() into its own file and use BSP Framework to perform more initialization.
  • startup/bspgetworkarea.c: New file.
  • startup/main.c: Removed.
  • Property mode set to 100644
File size: 1.2 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
21dist_project_lib_DATA += startup/linkcmds
22
23startup_SOURCES = startup/bspclean.c ../../shared/bsplibc.c \
24    ../../shared/bsppretaskinghook.c ../../shared/bsppredriverhook.c \
25    startup/bspgetworkarea.c ../../shared/bsppost.c startup/bspstart.c \
26    ../../shared/bootcard.c ../../shared/sbrk.c startup/setvec.c \
27    ../../shared/gnatinstallhandler.c
28clock_SOURCES = clock/ckinit.c
29console_SOURCES = console/console.c
30timer_SOURCES = timer/timer.c timer/timerisr.c
31shmsupp_SOURCES = shmsupp/addrconv.c shmsupp/getcfg.c shmsupp/lock.c \
32    shmsupp/mpisr.c
33
34noinst_LIBRARIES = libbsp.a
35libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
36    $(timer_SOURCES) $(shmsupp_SOURCES)
37
38EXTRA_DIST = times
39
40include $(srcdir)/preinstall.am
41include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.