source: rtems/c/src/lib/libbsp/m68k/mrm332/Makefile.am @ 760486f7

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

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

  • Makefile.am: Add preinstall.am.
  • Property mode set to 100644
File size: 2.1 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/mrm332.h
21nodist_include_HEADERS += ../../shared/include/coverhd.h
22
23EXTRA_DIST = times
24
25EXTRA_DIST += start/start.S
26start.$(OBJEXT): start/start.S
27        $(CPPASCOMPILE) -DASM -o $@ -c $<
28
29project_lib_DATA = start.$(OBJEXT)
30
31dist_project_lib_DATA += startup/linkcmds startup/linkcmds_ROM
32
33noinst_PROGRAMS += startup.rel
34startup_rel_SOURCES = startup/start_c.c ../../shared/bsplibc.c \
35    ../../shared/bsppost.c startup/bspstart.c startup/bspclean.c \
36    ../../shared/bootcard.c ../../m68k/shared/m68kpretaskinghook.c \
37    ../../shared/main.c ../../shared/sbrk.c ../../m68k/shared/setvec.c \
38    ../../shared/gnatinstallhandler.c startup/except_vect_332_ROM.S
39startup_rel_CPPFLAGS = $(AM_CPPFLAGS)
40startup_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
41
42noinst_PROGRAMS += clock.rel
43clock_rel_SOURCES = clock/ckinit.c
44clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
45clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
46
47noinst_PROGRAMS += console.rel
48console_rel_SOURCES = console/console.c console/sci.c console/sci.h
49console_rel_CPPFLAGS = $(AM_CPPFLAGS)
50console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
51
52noinst_PROGRAMS += spurious.rel
53spurious_rel_SOURCES = spurious/spinit.c
54spurious_rel_CPPFLAGS = $(AM_CPPFLAGS)
55spurious_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
56
57noinst_PROGRAMS += timer.rel
58timer_rel_SOURCES = timer/timer.c
59timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
60timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
61
62noinst_LIBRARIES = libbsp.a
63libbsp_a_SOURCES =
64libbsp_a_LIBADD = startup.rel clock.rel console.rel spurious.rel timer.rel
65libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
66    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
67
68all-local: $(PREINSTALL_FILES) $(TMPINSTALL_FILES)
69
70include $(srcdir)/preinstall.am
71include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.