source: rtems/c/src/lib/libcpu/powerpc/shared/src/Makefile.am @ d49389a

4.104.114.84.95
Last change on this file since d49389a was d49389a, checked in by Joel Sherrill <joel.sherrill@…>, on 02/20/03 at 22:07:22

2003-02-20 Till Straumann <strauman@…>

PR 349/bsps

  • mpc6xx/exceptions/raw_exception.c, mpc6xx/mmu/bat.c, mpc6xx/mmu/pte121.c, shared/include/cpuIdent.c, shared/include/cpuIdent.h, shared/src/Makefile.am, shared/src/stack.c, shared/src/stackTrace.h, powerpc/registers.h:
    • undo improper 'fix' who broke mpc604r identification
    • fix: 7400 identification PVR value was wrong
    • enhance 'setdbat()' to switch OFF a given BAT if called with 0 size
    • fix: page table support bugfix
    • enhancement: provide routines to take and print stack trace snapshots
    • add definitions for HID1 and DABR SPRs
  • Property mode set to 100644
File size: 866 bytes
Line 
1##
2## $Id$
3##
4
5
6VPATH = @srcdir@:@srcdir@/../../../shared/src
7
8C_FILES = cache.c cache_aligned_malloc.c cache_manager.c stack.c
9C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
10
11include_libcpudir = $(includedir)/libcpu
12
13include_libcpu_HEADERS = cache_.h cache.h stackTrace.h
14
15OBJS = $(C_O_FILES)
16
17include $(top_srcdir)/../../../../../automake/compile.am
18include $(top_srcdir)/../../../../../automake/lib.am
19
20AM_CPPFLAGS += -I$(srcdir)
21
22$(PROJECT_INCLUDE)/libcpu:
23        $(mkinstalldirs) $@
24
25$(PROJECT_INCLUDE)/libcpu/%.h: %.h
26        $(INSTALL_DATA) $< $@
27
28cache.h: $(top_srcdir)/../shared/include/cache.h
29        cp $< $@
30
31PREINSTALL_FILES = $(PROJECT_INCLUDE)/libcpu \
32    $(include_libcpu_HEADERS:%=$(PROJECT_INCLUDE)/libcpu/%)
33
34all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS)
35
36CLEANFILES = cache.h
37
38EXTRA_DIST = cache.c cache_.h
39
40include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.