source: rtems/c/src/lib/libcpu/i386/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: 1.1 KB
RevLine 
[df49c60]1##
[400c552]2## $Id$
[df49c60]3##
[400c552]4
5AUTOMAKE_OPTIONS = foreign 1.4
6ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
7
[cf1f72e]8VPATH = @srcdir@:@srcdir@/../shared/src
[400c552]9
[cf1f72e]10C_FILES = cache.c cache_aligned_malloc.c cache_manager.c displayCpu.c idt.c page.c
[4e36a2f]11C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
[400c552]12
[cf1f72e]13H_FILES = cache_.h
14INSTALLED_H_FILES = cpu.h registers.h cpuModel.h
[400c552]15
[cf1f72e]16S_FILES = cpuModel.S idtr.S
[4e36a2f]17S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
[400c552]18
19OBJS = $(C_O_FILES) $(S_O_FILES)
20
21include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
22include $(top_srcdir)/../../../../../automake/lib.am
23
[cf1f72e]24AM_CPPFLAGS += -I$(srcdir)
[400c552]25
26$(PROJECT_INCLUDE)/libcpu:
27        $(mkinstalldirs) $@
28
29$(PROJECT_INCLUDE)/libcpu/%.h: %.h
30        $(INSTALL_DATA) $< $@
31
[cf1f72e]32$(PROJECT_INCLUDE)/libcpu/cache.h: $(top_srcdir)/../shared/include/cache.h
[400c552]33        $(INSTALL_DATA) $< $@
34
[4e36a2f]35PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu \
[cf1f72e]36    $(PROJECT_INCLUDE)/libcpu/cache.h \
37    $(INSTALLED_H_FILES:%=$(PROJECT_INCLUDE)/libcpu/%)
[4e36a2f]38
[cf1f72e]39all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS)
[4e36a2f]40
[cf1f72e]41EXTRA_DIST = cache.c cache_.h cpu.h cpuModel.S cpuModel.h \
42    displayCpu.c idt.c idtr.S page.c registers.h
[400c552]43
44include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.