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

4.104.114.84.95
Last change on this file since 98f3cfa was 98f3cfa, checked in by Joel Sherrill <joel.sherrill@…>, on 03/05/01 at 22:48:47

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

  • mpc505/ictrl/Makefile.am, mpc6xx/clock/Makefile.am, mpc6xx/exceptions/Makefile.am, mpc6xx/mmu/Makefile.am, mpc8xx/include/Makefile.am, new_exception_processing/Makefile.am, old_exception_processing/Makefile.am, pc403/ictrl/Makefile.am, shared/include/Makefile.am, shared/src/Makefile.am: Apply *_HEADERS instead of *H_FILES.
  • shared/src/.cvsignore: Add cache.h.
  • Property mode set to 100644
File size: 920 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.