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

4.104.114.84.95
Last change on this file since 600e77a was 4a0d87e, checked in by Joel Sherrill <joel.sherrill@…>, on 04/18/02 at 20:54:19

2002-04-18 Ralf Corsepius <corsepiu@…>

  • asm.h: Include cpuopts.h instead of targopts.h.
  • rtems/new-exceptions/cpu.h: Relocated from libbsp/powerpc/support/new_exception_processing/rtems/score/cpu.h
  • rtems/old-exceptions/cpu.h: Relocated from c/src/lib/libbsp/powerpc/support/old_exception_processing/rtems/score/cpu.h
  • rtems/powerpc/registers.h: Relocated and renamed from libcpu/powerpc/shared/include/cpu.h.
  • rtems/score/cpu.h: New.
  • Makefile.am: Reflect changes above.
  • Property mode set to 100644
File size: 2.1 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
6
7include $(top_srcdir)/../../../../../../automake/multilib.am
8include $(top_srcdir)/../../../../../../automake/compile.am
9include $(top_srcdir)/../../../../../../automake/lib.am
10
11$(PROJECT_INCLUDE)/%.h: %.h
12        $(INSTALL_DATA) $< $@
13
14$(PROJECT_INCLUDE):
15        $(mkinstalldirs) $@
16
17$(PROJECT_INCLUDE)/rtems:
18        $(mkinstalldirs) $@
19
20$(PROJECT_INCLUDE)/rtems/score:
21        $(mkinstalldirs) $@
22
23include_HEADERS = asm.h
24PREINSTALL_FILES = $(PROJECT_INCLUDE) \
25    $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
26
27include_rtems_scoredir = $(includedir)/rtems/score
28include_rtems_score_HEADERS = \
29  rtems/score/ppc.h \
30  rtems/score/types.h
31include_rtems_score_HEADERS += rtems/score/cpu.h
32
33$(PROJECT_INCLUDE)/rtems/old-exceptions:
34        $(mkinstalldirs) $@
35
36include_rtems_old_exceptionsdir = $(includedir)/rtems/old-exceptions
37include_rtems_old_exceptions_HEADERS = rtems/old-exceptions/cpu.h
38
39$(PROJECT_INCLUDE)/rtems/new-exceptions:
40        $(mkinstalldirs) $@
41
42include_rtems_new_exceptionsdir = $(includedir)/rtems/new-exceptions
43include_rtems_new_exceptions_HEADERS = rtems/new-exceptions/cpu.h
44
45
46$(PROJECT_INCLUDE)/rtems/powerpc:
47        $(mkinstalldirs) $@
48
49include_rtems_powerpcdir = $(includedir)/rtems/powerpc
50include_rtems_powerpc_HEADERS = rtems/powerpc/registers.h
51
52PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \
53    $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)
54
55PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/old-exceptions \
56    $(include_rtems_old_exceptions_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)
57
58PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/new-exceptions \
59    $(include_rtems_new_exceptions_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)
60
61PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/powerpc \
62    $(include_rtems_powerpc_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)
63
64# $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
65#       $(INSTALL_DATA) $< $@
66
67# $(REL): $(rtems_cpu_rel_OBJECTS)
68#       $(make-rel)
69
70
71# TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
72
73all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
74    $(TMPINSTALL_FILES)
75
76include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.