source: rtems/c/src/lib/libcpu/nios2/Makefile.am @ f3b29236

5
Last change on this file since f3b29236 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: 813 bytes
Line 
1ACLOCAL_AMFLAGS = -I ../../../aclocal
2
3include $(top_srcdir)/../../../automake/compile.am
4
5CLEANFILES =
6DISTCLEANFILES =
7noinst_PROGRAMS =
8
9if shared
10include_libcpudir = $(includedir)/libcpu
11
12## shared/cache
13include_libcpu_HEADERS = ../shared/include/cache.h
14noinst_PROGRAMS += shared/cache.rel
15shared_cache_rel_SOURCES = ../shared/src/no_cache.c shared/cache/cache_.h \
16    ../shared/src/cache_manager.c
17shared_cache_rel_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/shared/cache
18shared_cache_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
19
20## shared/misc
21noinst_PROGRAMS += shared/misc.rel
22shared_misc_rel_SOURCES = shared/misc/memcpy.c
23shared_misc_rel_CPPFLAGS = $(AM_CPPFLAGS) $(NIOS2_CPPFLAGS)
24shared_misc_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
25endif
26
27include $(srcdir)/preinstall.am
28
29include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.