source: rtems/c/src/lib/libcpu/sparc/Makefile.am @ 7e5c9b89

4.115
Last change on this file since 7e5c9b89 was 7e5c9b89, checked in by Sebastian Huber <sebastian.huber@…>, on 11/25/14 at 13:58:13

rtems: Move rtems_cache_aligned_malloc()

Make sure also the size is cache aligned since otherwise we may have
some overlap with the next allocation block. A cache invalidate on this
area would be fatal.

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[fe8bc62f]1ACLOCAL_AMFLAGS = -I ../../../aclocal
[400c552]2
[0cf9970]3include $(top_srcdir)/../../../automake/compile.am
4
[1de66e9]5noinst_PROGRAMS =
[0cf9970]6
7include_libcpudir = $(includedir)/libcpu
[618cae2]8include_libcpu_HEADERS = ../shared/include/cache.h
[80d01b3c]9include_libcpu_HEADERS += include/libcpu/byteorder.h
10include_libcpu_HEADERS += include/libcpu/access.h
[0cf9970]11
[1de66e9]12noinst_PROGRAMS += cache.rel
[0cf9970]13cache_rel_SOURCES = cache/cache.c cache/cache_.h \
[7e5c9b89]14    ../shared/src/cache_manager.c
[7066c9f3]15cache_rel_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/cache
[0cf9970]16cache_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
17
18if has_instruction_cache
19cache_rel_CPPFLAGS += -DHAS_INSTRUCTION_CACHE
20endif
21
[1de66e9]22noinst_PROGRAMS += syscall.rel
[0cf9970]23syscall_rel_SOURCES = syscall/syscall.S syscall/syscall.h
[7066c9f3]24syscall_rel_CPPFLAGS = $(AM_CPPFLAGS)
[0cf9970]25syscall_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
26
[1de66e9]27noinst_PROGRAMS += reg_win.rel
[0cf9970]28reg_win_rel_SOURCES = reg_win/window.S
[7066c9f3]29reg_win_rel_CPPFLAGS = $(AM_CPPFLAGS)
[0cf9970]30reg_win_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
31
[80d01b3c]32noinst_PROGRAMS += access.rel
33access_rel_SOURCES = access/access.S access/access_le.c
34access_rel_CPPFLAGS = $(AM_CPPFLAGS)
35access_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
36
[4cb1853a]37include $(srcdir)/preinstall.am
[f581aa6f]38include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.