source: rtems/c/src/lib/libcpu/m68k/shared/cache/Makefile.am @ cf1f72e

4.104.114.84.95
Last change on this file since cf1f72e was cf1f72e, checked in by Joel Sherrill <joel.sherrill@…>, on 06/13/00 at 21:53:38

Moved i386 and m68k cache management code to libcpu. Everything
now is an implementation of the prototypes in rtems/rtems/cache.h.
The libcpu/i386/wrapup directory is no longer needed.
The PowerPC needs this done to it.

  • Property mode set to 100644
File size: 853 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
7
8VPATH = @srcdir@:@srcdir@/../../../shared/src
9
10C_FILES = cache.c cache_aligned_malloc.c cache_manager.c
11C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
12
13H_FILES = cache_.h
14INSTALLED_H_FILES =
15
16OBJS = $(C_O_FILES)
17
18include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
19include $(top_srcdir)/../../../../../automake/lib.am
20
21AM_CPPFLAGS += -I$(srcdir)
22
23$(PROJECT_INCLUDE)/libcpu:
24        $(mkinstalldirs) $@
25
26$(PROJECT_INCLUDE)/libcpu/%.h: %.h
27        $(INSTALL_DATA) $< $@
28
29$(PROJECT_INCLUDE)/libcpu/cache.h: $(top_srcdir)/../shared/include/cache.h
30        $(INSTALL_DATA) $< $@
31
32PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu $(PROJECT_INCLUDE)/libcpu/cache.h
33
34all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS)
35
36EXTRA_DIST = cache.c cache_.h
37
38include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.