source: rtems/cpukit/score/cpu/powerpc/Makefile.am @ e69307b7

4.104.114.84.95
Last change on this file since e69307b7 was be2ed3e, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/06/04 at 02:21:50

2004-04-06 Ralf Corsepius <ralf_corsepius@…>

  • configure.ac: Remove (Merged into $(top_srcdir)/configure.ac).
  • Makefile.am: Don't include multilib.am. Reflect merging configure.ac into $(top_srcdir)/configure.ac.
  • Property mode set to 100644
File size: 3.4 KB
Line 
1##
2## $Id$
3##
4
5include $(top_srcdir)/automake/compile.am
6
7include_rtemsdir = $(includedir)/rtems
8include_rtems_HEADERS = asm.h
9
10include_rtems_scoredir = $(includedir)/rtems/score
11include_rtems_score_HEADERS = rtems/score/ppc.h rtems/score/types.h
12include_rtems_score_HEADERS += rtems/score/cpu.h
13
14include_rtems_old_exceptionsdir = $(includedir)/rtems/old-exceptions
15include_rtems_old_exceptions_HEADERS = rtems/old-exceptions/cpu.h
16
17include_rtems_new_exceptionsdir = $(includedir)/rtems/new-exceptions
18include_rtems_new_exceptions_HEADERS = rtems/new-exceptions/cpu.h
19
20include_rtems_powerpcdir = $(includedir)/rtems/powerpc
21include_rtems_powerpc_HEADERS = rtems/powerpc/registers.h
22
23all-local: $(PREINSTALL_FILES)
24
25PREINSTALL_DIRS =
26PREINSTALL_FILES =
27
28$(PROJECT_INCLUDE)/rtems/$(dirstamp):
29        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems
30        @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
31PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp)
32
33$(PROJECT_INCLUDE)/rtems/asm.h: asm.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
34        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/asm.h
35PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/asm.h
36
37$(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
38        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score
39        @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
40PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
41
42$(PROJECT_INCLUDE)/rtems/score/ppc.h: rtems/score/ppc.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
43        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/ppc.h
44PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/ppc.h
45
46$(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
47        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h
48PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h
49
50$(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
51        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h
52PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h
53
54$(PROJECT_INCLUDE)/rtems/old-exceptions/$(dirstamp):
55        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/old-exceptions
56        @: > $(PROJECT_INCLUDE)/rtems/old-exceptions/$(dirstamp)
57PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/old-exceptions/$(dirstamp)
58
59$(PROJECT_INCLUDE)/rtems/old-exceptions/cpu.h: rtems/old-exceptions/cpu.h $(PROJECT_INCLUDE)/rtems/old-exceptions/$(dirstamp)
60        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/old-exceptions/cpu.h
61PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/old-exceptions/cpu.h
62
63$(PROJECT_INCLUDE)/rtems/new-exceptions/$(dirstamp):
64        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/new-exceptions
65        @: > $(PROJECT_INCLUDE)/rtems/new-exceptions/$(dirstamp)
66PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/new-exceptions/$(dirstamp)
67
68$(PROJECT_INCLUDE)/rtems/new-exceptions/cpu.h: rtems/new-exceptions/cpu.h $(PROJECT_INCLUDE)/rtems/new-exceptions/$(dirstamp)
69        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/new-exceptions/cpu.h
70PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/new-exceptions/cpu.h
71
72$(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp):
73        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/powerpc
74        @: > $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp)
75PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp)
76
77$(PROJECT_INCLUDE)/rtems/powerpc/registers.h: rtems/powerpc/registers.h $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp)
78        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/powerpc/registers.h
79PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/powerpc/registers.h
80
81CLEANFILES = $(PREINSTALL_FILES)
82DISTCLEANFILES = $(PREINSTALL_DIRS)
83
84include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.