source: rtems/c/src/lib/libbsp/m68k/dmv152/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.0 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 = ../../m68k/shared/start.S
23start.$(OBJEXT): ../../m68k/shared/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    ../../m68k/shared/m68kpretaskinghook.c ../../shared/main.c \
33    ../../shared/sbrk.c ../../m68k/shared/setvec.c startup/vmeintr.c \
34    ../../shared/gnatinstallhandler.c
35startup_rel_CPPFLAGS = $(AM_CPPFLAGS)
36startup_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
37
38noinst_PROGRAMS += clock.rel
39clock_rel_SOURCES = clock/ckinit.c
40clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
41clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
42
43noinst_PROGRAMS += console.rel
44console_rel_SOURCES = console/console.c
45console_rel_CPPFLAGS = $(AM_CPPFLAGS)
46console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
47
48noinst_PROGRAMS += spurious.rel
49spurious_rel_SOURCES = spurious/spinit.c
50spurious_rel_CPPFLAGS = $(AM_CPPFLAGS)
51spurious_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
52
53noinst_PROGRAMS += timer.rel
54timer_rel_SOURCES = timer/timer.c timer/timerisr.S
55timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
56timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
57
58noinst_LIBRARIES = libbsp.a
59libbsp_a_SOURCES =
60libbsp_a_LIBADD = startup.rel clock.rel console.rel spurious.rel timer.rel
61libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
62    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
63
64all-local: $(PREINSTALL_FILES) $(TMPINSTALL_FILES)
65
66EXTRA_DIST += times
67
68include $(srcdir)/preinstall.am
69include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.