source: rtems/c/src/lib/libcpu/mips/shared/cache/Makefile.am @ 5f4ee2a

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

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

  • tx39/include/Makefile.am: Use 'TMPINSTALL_FILES ='.
  • mongoosev/include/Makefile.am: Use 'TMPINSTALL_FILES ='.
  • mongoosev/duart/Makefile.am: Use 'PREINSTALL_FILES ='.
  • shared/cache/Makefile.am: Use 'PREINSTALL_FILES ='.
  • shared/cache/Makefile.am: Use 'CLEANFILES ='.
  • Property mode set to 100644
File size: 935 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
14noinst_HEADERS = cache_.h
15include_libcpu_HEADERS = cache.h
16
17OBJS = $(C_O_FILES)
18
19include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
20include $(top_srcdir)/../../../../../automake/compile.am
21include $(top_srcdir)/../../../../../automake/lib.am
22
23AM_CPPFLAGS += -I$(srcdir)
24
25$(PROJECT_INCLUDE)/libcpu:
26        $(mkinstalldirs) $@
27
28$(PROJECT_INCLUDE)/libcpu/%.h: %.h
29        $(INSTALL_DATA) $< $@
30
31cache.h: $(top_srcdir)/../shared/include/cache.h
32        cp $< $@
33
34PREINSTALL_FILES = $(PROJECT_INCLUDE)/libcpu \
35    $(include_libcpu_HEADERS:%=$(PROJECT_INCLUDE)/libcpu/%)
36
37all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS)
38
39CLEANFILES = cache.h
40
41EXTRA_DIST = cache.c cache_.h
42
43include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.