source: rtems/c/src/lib/libbsp/m68k/mvme162/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: 2.6 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
19# wrapup is the one that actually builds and installs the library
20# from the individual .rel files built in other directories
21SUBDIRS = . tools
22
23include_HEADERS += ../../shared/tod.h
24include_HEADERS += include/coverhd.h
25include_HEADERS += include/page_table.h
26
27nodist_include_HEADERS += $(top_srcdir)/../shared/mvme/mvme16x_hw.h
28
29EXTRA_DIST = ../../m68k/shared/start.S
30start.$(OBJEXT): ../../m68k/shared/start.S
31        $(CPPASCOMPILE) -o $@ -c $<
32
33project_lib_DATA = start.$(OBJEXT)
34
35dist_project_lib_DATA += startup/linkcmds
36
37noinst_PROGRAMS += startup.rel
38startup_rel_SOURCES = startup/bspclean.c ../../shared/bsplibc.c \
39    ../../shared/bsppost.c startup/bspstart.c ../../shared/bootcard.c \
40    ../../m68k/shared/m68kpretaskinghook.c ../../shared/main.c \
41    startup/page_table.c ../../shared/sbrk.c ../../m68k/shared/setvec.c \
42    ../../shared/gnatinstallhandler.c
43startup_rel_CPPFLAGS = $(AM_CPPFLAGS)
44startup_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
45
46noinst_PROGRAMS += clock.rel
47clock_rel_SOURCES = clock/ckinit.c
48clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
49clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
50
51noinst_PROGRAMS += console.rel
52console_rel_SOURCES = console/console.c
53console_rel_CPPFLAGS = $(AM_CPPFLAGS)
54console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
55
56noinst_PROGRAMS += timer.rel
57timer_rel_SOURCES = timer/timer.c timer/timerisr.S
58timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
59timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
60
61noinst_PROGRAMS += tod.rel
62tod_rel_SOURCES = tod/tod.c
63tod_rel_CPPFLAGS = $(AM_CPPFLAGS)
64tod_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
65
66if HAS_NETWORKING
67network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
68noinst_PROGRAMS += network.rel
69network_rel_SOURCES = ../mvme167/network/network.c
70network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
71network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
72endif
73#--
74noinst_LIBRARIES = libbsp.a
75libbsp_a_SOURCES =
76libbsp_a_LIBADD = startup.rel clock.rel console.rel timer.rel tod.rel
77if HAS_NETWORKING
78libbsp_a_LIBADD += network.rel
79endif
80libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
81    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
82if HAS_FPSP
83libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/fpsp.rel
84endif
85
86EXTRA_DIST += times
87
88include $(srcdir)/preinstall.am
89include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.