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

4.104.114.84.95
Last change on this file since 408644d4 was b6bf7d53, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/13/04 at 09:45:15

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

  • rtems/score/powerpc.h: New (Copied and renamed from rtems/score/ppc.h) for consistency with other ports.
  • rtems/score/ppc.h: Deprecation wrapper to rtems/score/powerpc.h.
  • Makefile.am: Reflect changes above.
  • rtems/score/cpu.h: Include rtems/score/powerpc.h instead of rtems/score/ppc.h.
  • Property mode set to 100644
File size: 3.7 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/powerpc.h rtems/score/cpu.h \
12    rtems/score/types.h
13if DEPRECATED
14include_rtems_score_HEADERS += rtems/score/ppc.h
15endif
16
17include_rtems_old_exceptionsdir = $(includedir)/rtems/old-exceptions
18include_rtems_old_exceptions_HEADERS = rtems/old-exceptions/cpu.h
19
20include_rtems_new_exceptionsdir = $(includedir)/rtems/new-exceptions
21include_rtems_new_exceptions_HEADERS = rtems/new-exceptions/cpu.h
22
23include_rtems_powerpcdir = $(includedir)/rtems/powerpc
24include_rtems_powerpc_HEADERS = rtems/powerpc/registers.h
25
26all-local: $(PREINSTALL_FILES)
27
28PREINSTALL_DIRS =
29PREINSTALL_FILES =
30
31$(PROJECT_INCLUDE)/rtems/$(dirstamp):
32        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems
33        @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
34PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp)
35
36$(PROJECT_INCLUDE)/rtems/asm.h: asm.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
37        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/asm.h
38PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/asm.h
39
40$(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
41        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score
42        @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
43PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
44
45$(PROJECT_INCLUDE)/rtems/score/powerpc.h: rtems/score/powerpc.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
46        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/powerpc.h
47PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/powerpc.h
48
49$(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
50        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h
51PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h
52
53$(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
54        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h
55PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h
56
57if DEPRECATED
58$(PROJECT_INCLUDE)/rtems/score/ppc.h: rtems/score/ppc.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
59        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/ppc.h
60PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/ppc.h
61endif
62
63$(PROJECT_INCLUDE)/rtems/old-exceptions/$(dirstamp):
64        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/old-exceptions
65        @: > $(PROJECT_INCLUDE)/rtems/old-exceptions/$(dirstamp)
66PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/old-exceptions/$(dirstamp)
67
68$(PROJECT_INCLUDE)/rtems/old-exceptions/cpu.h: rtems/old-exceptions/cpu.h $(PROJECT_INCLUDE)/rtems/old-exceptions/$(dirstamp)
69        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/old-exceptions/cpu.h
70PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/old-exceptions/cpu.h
71
72$(PROJECT_INCLUDE)/rtems/new-exceptions/$(dirstamp):
73        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/new-exceptions
74        @: > $(PROJECT_INCLUDE)/rtems/new-exceptions/$(dirstamp)
75PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/new-exceptions/$(dirstamp)
76
77$(PROJECT_INCLUDE)/rtems/new-exceptions/cpu.h: rtems/new-exceptions/cpu.h $(PROJECT_INCLUDE)/rtems/new-exceptions/$(dirstamp)
78        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/new-exceptions/cpu.h
79PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/new-exceptions/cpu.h
80
81$(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp):
82        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/powerpc
83        @: > $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp)
84PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp)
85
86$(PROJECT_INCLUDE)/rtems/powerpc/registers.h: rtems/powerpc/registers.h $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp)
87        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/powerpc/registers.h
88PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/powerpc/registers.h
89
90CLEANFILES = $(PREINSTALL_FILES)
91DISTCLEANFILES = $(PREINSTALL_DIRS)
92
93include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.