source: rtems/c/src/lib/libbsp/mips/p4000/Makefile.am @ a06faad

4.104.114.84.95
Last change on this file since a06faad was a06faad, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/11/06 at 05:46:29

2006-01-11 Ralf Corsepius <ralf.corsepius@…>

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