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

4.104.114.84.95
Last change on this file since f08808e was f08808e, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/11/04 at 05:40:53

2004-01-11 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Include compile.am, again.
  • Property mode set to 100644
File size: 3.0 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../aclocal
6
7include $(top_srcdir)/../../../automake/multilib.am
8include $(top_srcdir)/../../../automake/compile.am
9
10include_HEADERS = asm.h
11
12include_rtems_scoredir = $(includedir)/rtems/score
13include_rtems_score_HEADERS = rtems/score/ppc.h rtems/score/types.h
14include_rtems_score_HEADERS += rtems/score/cpu.h
15
16include_rtems_old_exceptionsdir = $(includedir)/rtems/old-exceptions
17include_rtems_old_exceptions_HEADERS = rtems/old-exceptions/cpu.h
18
19include_rtems_new_exceptionsdir = $(includedir)/rtems/new-exceptions
20include_rtems_new_exceptions_HEADERS = rtems/new-exceptions/cpu.h
21
22include_rtems_powerpcdir = $(includedir)/rtems/powerpc
23include_rtems_powerpc_HEADERS = rtems/powerpc/registers.h
24
25all-local: $(PREINSTALL_FILES)
26
27PREINSTALL_FILES =
28
29$(PROJECT_INCLUDE)/$(dirstamp):
30        @$(mkdir_p) $(PROJECT_INCLUDE)
31        @: > $(PROJECT_INCLUDE)/$(dirstamp)
32
33$(PROJECT_INCLUDE)/asm.h: asm.h $(PROJECT_INCLUDE)/$(dirstamp)
34        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h
35PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h
36
37$(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
38        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score
39        @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
40
41$(PROJECT_INCLUDE)/rtems/score/ppc.h: rtems/score/ppc.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
42        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/ppc.h
43PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/ppc.h
44
45$(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
46        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h
47PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.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/old-exceptions/$(dirstamp):
54        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/old-exceptions
55        @: > $(PROJECT_INCLUDE)/rtems/old-exceptions/$(dirstamp)
56
57$(PROJECT_INCLUDE)/rtems/old-exceptions/cpu.h: rtems/old-exceptions/cpu.h $(PROJECT_INCLUDE)/rtems/old-exceptions/$(dirstamp)
58        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/old-exceptions/cpu.h
59PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/old-exceptions/cpu.h
60
61$(PROJECT_INCLUDE)/rtems/new-exceptions/$(dirstamp):
62        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/new-exceptions
63        @: > $(PROJECT_INCLUDE)/rtems/new-exceptions/$(dirstamp)
64
65$(PROJECT_INCLUDE)/rtems/new-exceptions/cpu.h: rtems/new-exceptions/cpu.h $(PROJECT_INCLUDE)/rtems/new-exceptions/$(dirstamp)
66        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/new-exceptions/cpu.h
67PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/new-exceptions/cpu.h
68
69$(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp):
70        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/powerpc
71        @: > $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp)
72
73$(PROJECT_INCLUDE)/rtems/powerpc/registers.h: rtems/powerpc/registers.h $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp)
74        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/powerpc/registers.h
75PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/powerpc/registers.h
76
77include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.