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

4.104.114.84.95
Last change on this file since c1767be0 was 5f4ee2a, checked in by Joel Sherrill <joel.sherrill@…>, on 09/27/01 at 19:45:55

2001-09-27 Ralf Corsepius <corsepiu@…>

  • new_exception_processing/Makefile.am: Use 'PREINSTALL_FILES ='.
  • old_exception_processing/Makefile.am: Use 'PREINSTALL_FILES ='.
  • mpc6xx/mmu/Makefile.am: Use 'PREINSTALL_FILES ='.
  • mpc6xx/clock/Makefile.am: Use 'PREINSTALL_FILES ='.
  • mpc6xx/exceptions/Makefile.am: Use 'PREINSTALL_FILES ='.
  • mpc8xx/include/Makefile.am: Use 'PREINSTALL_FILES ='.
  • mpc8xx/exceptions/Makefile.am: Use 'PREINSTALL_FILES ='.
  • shared/include/Makefile.am: Use 'PREINSTALL_FILES ='.
  • shared/src/Makefile.am: Use 'PREINSTALL_FILES ='.
  • shared/src/Makefile.am: Use 'CLEANFILES ='.
  • Property mode set to 100644
File size: 918 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7VPATH = @srcdir@:@srcdir@/../../../shared/src
8
9C_FILES = cache.c cache_aligned_malloc.c cache_manager.c
10C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
11
12include_libcpudir = $(includedir)/libcpu
13
14include_libcpu_HEADERS = cache_.h cache.h
15
16OBJS = $(C_O_FILES)
17
18include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
19include $(top_srcdir)/../../../../../automake/compile.am
20include $(top_srcdir)/../../../../../automake/lib.am
21
22AM_CPPFLAGS += -I$(srcdir)
23
24$(PROJECT_INCLUDE)/libcpu:
25        $(mkinstalldirs) $@
26
27$(PROJECT_INCLUDE)/libcpu/%.h: %.h
28        $(INSTALL_DATA) $< $@
29
30cache.h: $(top_srcdir)/../shared/include/cache.h
31        cp $< $@
32
33PREINSTALL_FILES = $(PROJECT_INCLUDE)/libcpu \
34    $(include_libcpu_HEADERS:%=$(PROJECT_INCLUDE)/libcpu/%)
35
36all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS)
37
38CLEANFILES = cache.h
39
40EXTRA_DIST = cache.c cache_.h
41
42include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.