source: rtems/cpukit/score/cpu/or1k/Makefile.am @ 305357e

4.115
Last change on this file since 305357e was 305357e, checked in by Hesham ALMatary <heshamelmatary@…>, on 08/31/14 at 23:29:41

or1k: Implement context validate and context volatile clobber functions.

score/cpu/or1k: Add two new assembly functions: _CPU_Context_validate
and _CPU_Context_volatile_clobber; their implementation follows
corresponding ARM functions.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1include $(top_srcdir)/automake/compile.am
2
3CLEANFILES =
4DISTCLEANFILES =
5
6include_rtemsdir = $(includedir)/rtems
7
8include_rtems_HEADERS = rtems/asm.h
9
10include_rtems_scoredir = $(includedir)/rtems/score
11
12include_rtems_score_HEADERS =
13include_rtems_score_HEADERS += rtems/score/cpu.h
14include_rtems_score_HEADERS += rtems/score/cpu_asm.h
15include_rtems_score_HEADERS += rtems/score/types.h
16include_rtems_score_HEADERS += rtems/score/or1k.h
17include_rtems_score_HEADERS += rtems/score/or1k-utility.h
18
19
20
21noinst_LIBRARIES = libscorecpu.a
22
23libscorecpu_a_SOURCES =
24libscorecpu_a_SOURCES += cpu.c
25libscorecpu_a_SOURCES += or1k-context-switch.S
26libscorecpu_a_SOURCES += or1k-context-initialize.c
27libscorecpu_a_SOURCES += or1k-context-validate.S
28libscorecpu_a_SOURCES += or1k-context-volatile-clobber.S
29libscorecpu_a_SOURCES += or1k-exception-default.c
30libscorecpu_a_SOURCES += or1k-exception-frame-print.c
31libscorecpu_a_SOURCES += or1k-exception-handler-low.S
32
33libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS)
34
35all-local: $(PREINSTALL_FILES)
36
37include $(srcdir)/preinstall.am
38include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.