source: rtems/cpukit/score/cpu/or1k/Makefile.am @ 23e8f3d

4.115
Last change on this file since 23e8f3d was 94d45f6, checked in by Hesham ALMatary <heshamelmatary@…>, on 08/12/14 at 15:57:42

Add support for OpenRISC - Fixed issues

This work is based on the old or32 port (that has been
removed back in 2005) authored by Chris Ziomkowski. The patch includes the
basic functions every port should implement like: context switch, exception
handling, OpenRISC ABI and machine definitions and configurations.

  • Property mode set to 100644
File size: 988 bytes
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-exception-default.c
28libscorecpu_a_SOURCES += or1k-exception-frame-print.c
29libscorecpu_a_SOURCES += or1k-exception-handler-low.S
30
31libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS)
32
33all-local: $(PREINSTALL_FILES)
34
35include $(srcdir)/preinstall.am
36include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.