source: rtems/c/src/lib/libbsp/m68k/mvme147/Makefile.am @ bb1571ec

4.104.114.84.95
Last change on this file since bb1571ec was bb1571ec, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/12/06 at 05:40:08

Cleanup.

  • 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
17noinst_PROGRAMS =
18
19include_HEADERS += include/coverhd.h
20
21EXTRA_DIST = ../../m68k/shared/start.S
22start.$(OBJEXT): ../../m68k/shared/start.S
23        $(CPPASCOMPILE) -DASM -o $@ -c $<
24
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 \
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 += timer.rel
49timer_rel_SOURCES = timer/timer.c timer/timerisr.S
50timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
51timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
52
53noinst_LIBRARIES = libbsp.a
54libbsp_a_SOURCES =
55libbsp_a_LIBADD = startup.rel clock.rel console.rel timer.rel
56libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
57    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
58
59all-local: $(PREINSTALL_FILES) $(TMPINSTALL_FILES)
60
61EXTRA_DIST += times
62
63include $(srcdir)/preinstall.am
64include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.