source: rtems/c/src/lib/libbsp/m68k/idp/Makefile.am @ a14fba32

4.104.115
Last change on this file since a14fba32 was a14fba32, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/30/08 at 10:38:36

2008-09-30 Ralf Corsépius <ralf.corsepius@…>

  • Makefile.am: Eliminate bsp.am. Build startup files as side-effect of building libbspstart.a, using automake-rules.
  • Property mode set to 100644
File size: 1.5 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7include $(top_srcdir)/../../../../automake/compile.am
8
9include_bspdir = $(includedir)/bsp
10
11dist_project_lib_DATA = bsp_specs
12
13include_HEADERS = include/bsp.h
14include_HEADERS += include/tm27.h
15
16nodist_include_HEADERS = include/bspopts.h
17nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
18DISTCLEANFILES = include/bspopts.h
19
20include_HEADERS += include/leds.h
21nodist_include_HEADERS += ../../shared/include/coverhd.h
22
23noinst_LIBRARIES = libbspstart.a
24libbspstart_a_SOURCES = ../../m68k/shared/start.S
25project_lib_DATA = start.$(OBJEXT)
26
27dist_project_lib_DATA += startup/linkcmds
28
29noinst_LIBRARIES += libbsp.a
30libbsp_a_SOURCES =
31
32# startup
33libbsp_a_SOURCES += ../../shared/bspclean.c ../../shared/bsplibc.c \
34    ../../shared/bsppredriverhook.c \
35    ../../shared/bsppost.c startup/bspstart.c ../../shared/bootcard.c \
36    ../../shared/bsppretaskinghook.c ../../shared/bspgetworkarea.c \
37    ../../shared/sbrk.c ../../m68k/shared/setvec.c \
38    ../../shared/gnatinstallhandler.c
39# clock
40libbsp_a_SOURCES += clock/ckinit.c
41# console
42libbsp_a_SOURCES += console/console.c console/leds.c console/mc68ec.c \
43    console/duart.c ../../shared/dummy_printk_support.c
44# timer
45libbsp_a_SOURCES += timer/timer.c timer/timerisr.S
46
47EXTRA_DIST = include/README
48EXTRA_DIST += times
49
50libbsp_a_LIBADD = \
51    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
52    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
53
54include $(srcdir)/preinstall.am
55include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.