source: rtems/c/src/lib/libcpu/mips/shared/Makefile.am @ f00f70b5

4.104.114.84.95
Last change on this file since f00f70b5 was 83a0a8a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/07/05 at 06:23:52

2005-01-07 Ralf Corsepius <ralf.corsepius@…>

  • mongoosev/Makefile.am, r46xx/Makefile.am, shared/Makefile.am, tx39/Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1##
2## $Id$
3##
4
5noinst_PROGRAMS =
6
7include $(top_srcdir)/../../../automake/compile.am
8
9## cache
10include_libcpudir = $(includedir)/libcpu
11
12include_libcpu_HEADERS = ../../shared/include/cache.h
13
14noinst_PROGRAMS += cache.rel
15cache_rel_SOURCES = cache/cache.c ../../shared/src/cache_aligned_malloc.c \
16    ../../shared/src/cache_manager.c cache/cache_.h
17cache_rel_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/cache
18cache_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
19
20## interrupts
21
22if tx39
23interrupts_CPPFLAGS = -DTX39
24endif
25
26if mongoosev
27interrupts_CPPFLAGS = -DMONGOOSEV
28endif
29
30noinst_PROGRAMS += interrupts.rel
31interrupts_rel_SOURCES = interrupts/installisrentries.c \
32    interrupts/vectorexceptions.c interrupts/isr_entries.S
33interrupts_rel_CPPFLAGS = $(AM_CPPFLAGS) \
34    $(interrupts_CPPFLAGS)
35interrupts_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
36
37all-local: $(PREINSTALL_FILES)
38
39## --
40
41PREINSTALL_DIRS =
42PREINSTALL_FILES =
43
44$(PROJECT_INCLUDE)/libcpu/$(dirstamp):
45        @$(mkdir_p) $(PROJECT_INCLUDE)/libcpu
46        @: > $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
47PREINSTALL_DIRS += $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
48
49$(PROJECT_INCLUDE)/libcpu/cache.h: ../../shared/include/cache.h $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
50        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/libcpu/cache.h
51PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu/cache.h
52
53CLEANFILES = $(PREINSTALL_FILES)
54DISTCLEANFILES = $(PREINSTALL_DIRS)
55
56include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.