source: rtems/cpukit/score/cpu/mips/Makefile.am @ 5236cf04

4.104.114.84.95
Last change on this file since 5236cf04 was 5236cf04, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/01/05 at 15:15:45

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

PR rtems/752

  • rtems/mips/idtcpu.h rtems/mips/iregdef.h: New (relocated from .). New header guards.
  • idtcpu.h, iregdef.h: Remove.
  • Makefile.am: Reflect changes above.
  • Property mode set to 100644
File size: 2.5 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_mipsdir = $(includedir)/rtems/mips
11include_rtems_mips_HEADERS = rtems/mips/idtcpu.h rtems/mips/iregdef.h
12
13include_rtems_scoredir = $(includedir)/rtems/score
14include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/mips.h \
15    rtems/score/types.h
16
17noinst_LIBRARIES = libscorecpu.a
18libscorecpu_a_SOURCES = cpu.c cpu_asm.S
19libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS)
20
21all-local: $(PREINSTALL_FILES)
22
23PREINSTALL_DIRS =
24PREINSTALL_FILES =
25
26$(PROJECT_INCLUDE)/rtems/$(dirstamp):
27        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems
28        @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
29PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp)
30
31$(PROJECT_INCLUDE)/rtems/asm.h: asm.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
32        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/asm.h
33PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/asm.h
34
35$(PROJECT_INCLUDE)/rtems/mips/$(dirstamp):
36        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/mips
37        @: > $(PROJECT_INCLUDE)/rtems/mips/$(dirstamp)
38PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/mips/$(dirstamp)
39
40$(PROJECT_INCLUDE)/rtems/mips/idtcpu.h: rtems/mips/idtcpu.h $(PROJECT_INCLUDE)/rtems/mips/$(dirstamp)
41        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/mips/idtcpu.h
42PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/mips/idtcpu.h
43
44$(PROJECT_INCLUDE)/rtems/mips/iregdef.h: rtems/mips/iregdef.h $(PROJECT_INCLUDE)/rtems/mips/$(dirstamp)
45        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/mips/iregdef.h
46PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/mips/iregdef.h
47
48$(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
49        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score
50        @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
51PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
52
53$(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
54        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h
55PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h
56
57$(PROJECT_INCLUDE)/rtems/score/mips.h: rtems/score/mips.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
58        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/mips.h
59PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/mips.h
60
61$(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
62        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h
63PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h
64
65CLEANFILES = $(PREINSTALL_FILES)
66DISTCLEANFILES = $(PREINSTALL_DIRS)
67
68include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.