source: rtems/c/src/lib/libcpu/mips/shared/cache/Makefile.am @ 380b4337

4.104.114.84.95
Last change on this file since 380b4337 was 380b4337, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/12/03 at 15:42:40

2003-12-12 Ralf Corsepius <corsepiu@…>

  • mongoosev/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
  • mongoosev/duart/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
  • shared/cache/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
  • tx39/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
  • Property mode set to 100644
File size: 926 bytes
Line 
1##
2## $Id$
3##
4
5VPATH = @srcdir@:@srcdir@/../../../shared/src
6
7C_FILES = cache.c cache_aligned_malloc.c cache_manager.c
8OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
9
10include_libcpudir = $(includedir)/libcpu
11
12noinst_HEADERS = cache_.h
13include_libcpu_HEADERS = cache.h
14
15include $(top_srcdir)/../../../automake/compile.am
16include $(top_srcdir)/../../../automake/lib.am
17
18AM_CPPFLAGS += -I$(srcdir)
19
20cache.h: $(top_srcdir)/../shared/include/cache.h
21        cp $< $@
22
23all-local: $(PREINSTALL_FILES) $(OBJS)
24
25CLEANFILES = cache.h
26
27EXTRA_DIST = cache.c cache_.h
28
29PREINSTALL_FILES =
30
31$(PROJECT_INCLUDE)/libcpu/$(dirstamp):
32        @$(mkdir_p) $(PROJECT_INCLUDE)/libcpu
33        @: > $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
34
35$(PROJECT_INCLUDE)/libcpu/cache.h: cache.h $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
36        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/libcpu/cache.h
37PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu/cache.h
38
39include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.