source: rtems/c/src/lib/libbsp/nios2/nios2_iss/Makefile.am @ b6cf80fb

4.104.115
Last change on this file since b6cf80fb was b6cf80fb, checked in by Joel Sherrill <joel.sherrill@…>, on 09/23/08 at 15:10:33

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

  • Makefile.am, configure.ac: BSP specific bsp_cleanup() is a dupe of a shared one.
  • startup/bspclean.c: Removed.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7include $(top_srcdir)/../../../../automake/compile.am
8include $(top_srcdir)/../../bsp.am
9
10
11dist_project_lib_DATA = bsp_specs
12
13include_HEADERS = include/bsp.h
14include_HEADERS += include/tm27.h
15
16nodist_include_HEADERS = include/bspopts.h
17DISTCLEANFILES = include/bspopts.h
18
19noinst_PROGRAMS =
20
21include_HEADERS += include/coverhd.h
22
23EXTRA_DIST = start/start.S start/crtnn.s times
24crtnn.$(OBJEXT): start/crtnn.s
25        $(CPPASCOMPILE) -o $@ -c $<
26start.$(OBJEXT): start/start.S
27        $(CPPASCOMPILE) -o $@ -c $<
28project_lib_DATA = start.$(OBJEXT) crtnn.$(OBJEXT)
29
30dist_project_lib_DATA += startup/linkcmds
31
32startup_SOURCES = ../../shared/bspclean.c ../../shared/bsplibc.c \
33    ../../shared/bspreset_loop.c ../../shared/bsppost.c startup/bspstart.c \
34    ../../shared/bsppretaskinghook.c ../../shared/bspgetworkarea.c \
35    ../../shared/bootcard.c ../../shared/sbrk.c startup/setvec.c \
36    ../../shared/gnatinstallhandler.c
37clock_SOURCES = clock/clock.c
38console_SOURCES = console/console.c
39timer_SOURCES = timer/timer.c
40shmsupp_SOURCES = shmsupp/addrconv.c shmsupp/getcfg.c shmsupp/lock.c \
41    shmsupp/mpisr.c
42
43noinst_LIBRARIES = libbsp.a
44libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
45    $(timer_SOURCES) $(shmsupp_SOURCES)
46
47include $(srcdir)/preinstall.am
48include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.