source: rtems/cpukit/score/cpu/c4x/Makefile.am @ f26145b

4.104.114.84.95
Last change on this file since f26145b was 1f24914a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/04/05 at 05:25:15

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

PR 754/rtems

  • rtems/asm.h: New (relocated from .).
  • asm.h: Remove (moved to rtems/asm.h).
  • 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 = rtems/asm.h
9
10include_rtems_tic4xdir = $(includedir)/rtems/tic4x
11include_rtems_tic4x_HEADERS = rtems/tic4x/c4xio.h
12
13include_rtems_scoredir = $(includedir)/rtems/score
14include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/c4x.h \
15    rtems/score/types.h rtems/score/cpu_asm.h
16
17noinst_LIBRARIES = libscorecpu.a
18libscorecpu_a_SOURCES = cpu.c irq.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: rtems/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/tic4x/$(dirstamp):
36        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/tic4x
37        @: > $(PROJECT_INCLUDE)/rtems/tic4x/$(dirstamp)
38PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/tic4x/$(dirstamp)
39
40$(PROJECT_INCLUDE)/rtems/tic4x/c4xio.h: rtems/tic4x/c4xio.h $(PROJECT_INCLUDE)/rtems/tic4x/$(dirstamp)
41        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/tic4x/c4xio.h
42PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/tic4x/c4xio.h
43
44$(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
45        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score
46        @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
47PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
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/c4x.h: rtems/score/c4x.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
54        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/c4x.h
55PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/c4x.h
56
57$(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
58        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h
59PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h
60
61$(PROJECT_INCLUDE)/rtems/score/cpu_asm.h: rtems/score/cpu_asm.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
62        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h
63PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu_asm.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.