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

5
Last change on this file since 2858939a was 2858939a, checked in by Sebastian Huber <sebastian.huber@…>, on 12/09/15 at 11:03:49

bsps: Delete superfluous bsp_pretasking_hook()

Use the bsp_predriver_hook() instead.

Update #2408.

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