source: rtems/c/src/lib/libbsp/c4x/c4xsim/Makefile.am @ fc1a3ba

4.104.114.84.95
Last change on this file since fc1a3ba was fc1a3ba, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/12/06 at 10:12:31

Remove all-local:.

  • Property mode set to 100644
File size: 1.9 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7# wrapup is the one that actually builds and installs the library
8# from the individual .rel files built in other directories
9SUBDIRS = . tools
10
11include $(top_srcdir)/../../../../automake/compile.am
12include $(top_srcdir)/../../bsp.am
13
14dist_project_lib_DATA = bsp_specs
15
16include_HEADERS = include/bsp.h
17include_HEADERS += include/tm27.h
18
19nodist_include_HEADERS = include/bspopts.h
20DISTCLEANFILES = include/bspopts.h
21
22noinst_PROGRAMS =
23
24include_HEADERS += include/simio.h
25nodist_include_HEADERS += ../../shared/include/coverhd.h
26
27EXTRA_DIST = start/start.S
28start.$(OBJEXT): start/start.S
29        $(CPPASCOMPILE) -DASM -o $@ -c $<
30project_lib_DATA = start.$(OBJEXT)
31
32dist_project_lib_DATA += startup/linkcmds
33
34noinst_PROGRAMS += startup.rel
35startup_rel_SOURCES = ../../shared/bspclean.c ../../shared/bsplibc.c \
36    ../../shared/bsppost.c startup/bspstart.c ../../shared/main.c \
37    ../../shared/bootcard.c ../../shared/sbrk.c ../../shared/setvec.c \
38    ../../c4x/shared/c3xspurious.c ../../c4x/shared/c4xspurious.c \
39    ../../c4x/shared/bspspuriousinit.c startup/spurious.c \
40    ../../shared/gnatinstallhandler.c
41startup_rel_CPPFLAGS = $(AM_CPPFLAGS)
42startup_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
43
44noinst_PROGRAMS += console.rel
45console_rel_SOURCES = console/consolereserveresources.c console/debugio.c \
46    console/simio.c ../../shared/console.c
47console_rel_CPPFLAGS = $(AM_CPPFLAGS)
48console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
49
50noinst_PROGRAMS += clock.rel
51clock_rel_SOURCES = clock/clock.c
52clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
53clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
54
55noinst_PROGRAMS += timer.rel
56timer_rel_SOURCES = timer/timer.c
57timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
58timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
59
60noinst_LIBRARIES = libbsp.a
61libbsp_a_SOURCES =
62libbsp_a_LIBADD = startup.rel console.rel clock.rel timer.rel
63
64EXTRA_DIST += times
65
66include $(srcdir)/preinstall.am
67include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.