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

4.104.114.84.95
Last change on this file since a369ade was 2bc236ba, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/07/05 at 06:03:01

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

  • Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
  • Property mode set to 100644
File size: 2.4 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_c4xdir = $(includedir)/rtems/c4x
11include_rtems_c4x_HEADERS = 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: 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/c4x/$(dirstamp):
36        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/c4x
37        @: > $(PROJECT_INCLUDE)/rtems/c4x/$(dirstamp)
38PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/c4x/$(dirstamp)
39
40$(PROJECT_INCLUDE)/rtems/c4x/c4xio.h: c4xio.h $(PROJECT_INCLUDE)/rtems/c4x/$(dirstamp)
41        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/c4x/c4xio.h
42PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/c4x/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.