source: rtems/c/src/lib/libbsp/arm/smdk2410/Makefile.am @ 3f5e0961

5
Last change on this file since 3f5e0961 was 3f5e0961, checked in by Joel Sherrill <joel@…>, on 03/01/16 at 18:46:18

smdk2410: Resurrect missing gp32 files

When the gp32 BSP was obsoleted and removed, files were deleted that
were actually used by the gp32.

This was actually a violation of the expected directory structure
and why it wasn't caught. Another example of why continuous integration
testing -- even just building is important.

  • Property mode set to 100644
File size: 2.5 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2
3include $(top_srcdir)/../../../../automake/compile.am
4
5include_bspdir = $(includedir)/bsp
6
7dist_project_lib_DATA = bsp_specs
8
9include_HEADERS = include/bsp.h
10include_HEADERS += smc/smc.h
11include_HEADERS += ../../shared/include/tm27.h
12
13include_bsp_HEADERS =
14
15nodist_include_HEADERS = include/bspopts.h
16nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
17DISTCLEANFILES = include/bspopts.h
18nodist_include_HEADERS += ../../shared/include/coverhd.h
19
20noinst_LIBRARIES = libbspstart.a
21libbspstart_a_SOURCES = start/start.S
22project_lib_DATA = start.$(OBJEXT)
23
24dist_project_lib_DATA += startup/linkcmds
25
26noinst_LIBRARIES += libbsp.a
27libbsp_a_SOURCES =
28
29# startup
30libbsp_a_SOURCES += startup/bspstart.c
31libbsp_a_SOURCES += startup/bspidle.c
32libbsp_a_SOURCES += ../../shared/bspclean.c
33libbsp_a_SOURCES += startup/bspreset.c
34libbsp_a_SOURCES += startup/memmap.c
35libbsp_a_SOURCES += ../../shared/bootcard.c
36libbsp_a_SOURCES += ../../shared/sbrk.c
37
38libbsp_a_SOURCES += ../../shared/bsppredriverhook.c
39libbsp_a_SOURCES += ../../shared/bspgetworkarea.c
40libbsp_a_SOURCES += ../../shared/gnatinstallhandler.c
41libbsp_a_SOURCES += ../../shared/cpucounterread.c
42libbsp_a_SOURCES += ../../shared/cpucounterdiff.c
43# console
44libbsp_a_SOURCES += console/uart.c
45libbsp_a_SOURCES += ../../shared/console.c
46libbsp_a_SOURCES += ../../shared/console_select.c
47libbsp_a_SOURCES += ../../shared/console_read.c
48libbsp_a_SOURCES += ../../shared/console_write.c
49libbsp_a_SOURCES += ../../shared/console_control.c
50# IRQ
51include_bsp_HEADERS += ../../shared/include/irq-generic.h \
52        ../../shared/include/irq-info.h
53libbsp_a_SOURCES += ../../shared/src/irq-default-handler.c
54libbsp_a_SOURCES += ../../shared/src/irq-generic.c
55libbsp_a_SOURCES += ../../shared/src/irq-info.c
56libbsp_a_SOURCES += ../../shared/src/irq-legacy.c
57libbsp_a_SOURCES += ../../shared/src/irq-server.c
58libbsp_a_SOURCES += ../../shared/src/irq-shell.c
59# abort
60libbsp_a_SOURCES += ../shared/abort/abort.c
61# smc
62libbsp_a_SOURCES += smc/smc.c
63libbsp_a_SOURCES += smc/smc.h
64
65# Cache
66libbsp_a_SOURCES += ../../../libcpu/shared/src/cache_manager.c
67libbsp_a_SOURCES += ../../shared/include/cache_.h
68libbsp_a_CPPFLAGS = -I$(srcdir)/../../shared/include
69
70libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/shared/arm920.rel \
71    ../../../libcpu/@RTEMS_CPU@/s3c24xx/clock.rel \
72    ../../../libcpu/@RTEMS_CPU@/s3c24xx/timer.rel \
73    ../../../libcpu/@RTEMS_CPU@/s3c24xx/irq.rel
74
75include $(srcdir)/preinstall.am
76include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.