source: rtems/c/src/lib/libbsp/m68k/ods68302/Makefile.am @ ea8a958

4.115
Last change on this file since ea8a958 was 9957dbf, checked in by Joel Sherrill <joel.sherrill@…>, on 10/02/08 at 21:39:40

2008-10-02 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, preinstall.am: Use shared tm27.h stub.
  • include/tm27.h: Removed.
  • 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
10include_bspdir = $(includedir)/bsp
11
12dist_project_lib_DATA = bsp_specs
13
14include_HEADERS = include/bsp.h
15include_HEADERS += ../../shared/include/tm27.h
16
17nodist_include_HEADERS = include/bspopts.h
18nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
19DISTCLEANFILES = include/bspopts.h
20noinst_PROGRAMS =
21
22EXTRA_DIST =
23
24include_HEADERS += include/bare.h
25include_HEADERS += include/crc.h
26include_HEADERS += include/debugport.h
27include_HEADERS += include/m68302scc.h
28include_HEADERS += include/coverhd.h
29
30# FIXME: Better merge both files into one and use #ifdef GDB_MONITOR_ACTIVE
31if ODS68302_DEBUG
32EXTRA_DIST += start/debugreset.S
33start.$(OBJEXT): start/debugreset.S
34        $(CPPASCOMPILE) -o $@ -c $<
35else
36EXTRA_DIST += start/reset.S
37start.$(OBJEXT): start/reset.S
38        $(CPPASCOMPILE) -o $@ -c $<
39endif
40
41project_lib_DATA = start.$(OBJEXT)
42
43dist_project_lib_DATA += startup/linkcmds startup/rom startup/debugger
44
45noinst_LIBRARIES = libbsp.a
46libbsp_a_SOURCES =
47
48# startup
49libbsp_a_SOURCES += startup/cpuboot.c startup/crc.c startup/debugport.c \
50    startup/gdb-hooks.c ../../shared/bootcard.c \
51    startup/m68302scc.c startup/m68k-stub.c \
52    ../../shared/bsppretaskinghook.c startup/memcheck.c \
53    ../../shared/bspgetworkarea.c startup/memcheck.c \
54    startup/trace.c ../../shared/gnatinstallhandler.c ../../shared/bsplibc.c \
55    ../../shared/bsppredriverhook.c ../../shared/bsppost.c \
56    ../../shared/bspstart.c ../../shared/bspclean.c ../../shared/sbrk.c \
57    ../../m68k/shared/setvec.c
58# clock
59libbsp_a_SOURCES += clock/ckinit.c
60# console
61libbsp_a_SOURCES += console/console.c ../../shared/dummy_printk_support.c
62# timer
63libbsp_a_SOURCES += timer/timer.c timer/timerisr.S
64
65libbsp_a_LIBADD = \
66    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
67    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
68
69include $(srcdir)/preinstall.am
70include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.