source: rtems/c/src/lib/libcpu/sparc/Makefile.am @ 7066c9f3

4.104.114.84.95
Last change on this file since 7066c9f3 was 7066c9f3, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/07/05 at 06:27:05

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

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