source: rtems/c/src/lib/libbsp/m68k/dmv152/Makefile.am @ 57357d9

4.104.114.84.95
Last change on this file since 57357d9 was 57357d9, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/17/06 at 08:58:44

2006-10-17 Ralf Corsépius <ralf.corsepius@…>

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