source: rtems/cpukit/score/cpu/arm/Makefile.am @ fa6b0f5

4.104.114.84.95
Last change on this file since fa6b0f5 was 1f24914a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/04/05 at 05:25:15

2005-02-04 Ralf Corsepius <ralf.corsepius@…>

PR 754/rtems

  • rtems/asm.h: New (relocated from .).
  • asm.h: Remove (moved to rtems/asm.h).
  • Makefile.am: Reflect changes above.
  • Property mode set to 100644
File size: 2.0 KB
Line 
1##
2## $Id$
3##
4
5include $(top_srcdir)/automake/compile.am
6
7include_rtemsdir = $(includedir)/rtems
8include_rtems_HEADERS = rtems/asm.h
9
10include_rtems_scoredir = $(includedir)/rtems/score
11include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/cpu_asm.h \
12    rtems/score/arm.h rtems/score/types.h
13
14noinst_LIBRARIES = libscorecpu.a
15libscorecpu_a_SOURCES = cpu.c cpu_asm.S
16libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS)
17
18all-local: $(PREINSTALL_FILES)
19
20PREINSTALL_DIRS =
21PREINSTALL_FILES =
22
23$(PROJECT_INCLUDE)/rtems/$(dirstamp):
24        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems
25        @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
26PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp)
27
28$(PROJECT_INCLUDE)/rtems/asm.h: rtems/asm.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
29        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/asm.h
30PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/asm.h
31
32$(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
33        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score
34        @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
35PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
36
37$(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
38        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h
39PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h
40
41$(PROJECT_INCLUDE)/rtems/score/cpu_asm.h: rtems/score/cpu_asm.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
42        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h
43PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h
44
45$(PROJECT_INCLUDE)/rtems/score/arm.h: rtems/score/arm.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
46        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/arm.h
47PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/arm.h
48
49$(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
50        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h
51PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.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.