source: rtems/c/src/lib/libbsp/mips/hurricane/Makefile.am @ c6254224

4.104.114.84.95
Last change on this file since c6254224 was c6254224, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/16/06 at 17:36:21

Add preinstall.am

  • Property mode set to 100644
File size: 1.9 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
14include_HEADERS += include/usc.h
15
16nodist_include_HEADERS = include/bspopts.h
17DISTCLEANFILES = include/bspopts.h
18
19noinst_PROGRAMS =
20
21nodist_include_HEADERS += ../../shared/include/coverhd.h
22
23EXTRA_DIST = start/start.S start/regs.S
24start.$(OBJEXT): start/start.S
25        $(CPPASCOMPILE) -DASM -o $@ -c $<
26
27project_lib_DATA = start.$(OBJEXT)
28
29dist_project_lib_DATA += startup/linkcmds
30
31noinst_PROGRAMS += startup.rel
32startup_rel_SOURCES = ../../shared/bspclean.c \
33    ../../shared/bsplibc.c ../../shared/bsppost.c startup/bspstart.c \
34    ../../shared/bootcard.c ../../shared/main.c ../../shared/sbrk.c \
35    ../../shared/gnatinstallhandler.c ../../shared/setvec.c \
36    startup/inittlb.c \
37    startup/idtmem.S startup/idttlb.S startup/exception.S
38startup_rel_CPPFLAGS = $(AM_CPPFLAGS)
39startup_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
40
41noinst_PROGRAMS += clock.rel
42clock_rel_SOURCES = clock/ckinit.c
43clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
44clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
45
46noinst_PROGRAMS += console.rel
47console_rel_SOURCES = console/console.c
48console_rel_CPPFLAGS = $(AM_CPPFLAGS)
49console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
50
51noinst_PROGRAMS += liblnk.rel
52liblnk_rel_SOURCES = liblnk/lnklib.S liblnk/pmon.S
53liblnk_rel_CPPFLAGS = $(AM_CPPFLAGS)
54liblnk_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
55
56noinst_LIBRARIES = libbsp.a
57libbsp_a_SOURCES =
58libbsp_a_LIBADD = startup.rel clock.rel console.rel liblnk.rel
59libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
60    ../../../libcpu/@RTEMS_CPU@/shared/interrupts.rel \
61    ../../../libcpu/@RTEMS_CPU@/rm52xx/timer.rel \
62    ../../../libcpu/@RTEMS_CPU@/rm52xx/vectorisrs.rel
63
64include $(srcdir)/preinstall.am
65include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.