source: rtems/cpukit/score/cpu/h8300/Makefile.am @ 3479b8b1

4.104.114.84.95
Last change on this file since 3479b8b1 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: 1.7 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_scoredir = $(includedir)/rtems/score
11include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/h8300.h \
12    rtems/score/types.h
13
14noinst_LIBRARIES = libscorecpu.a
15libscorecpu_a_SOURCES = cpu.c cpu_asm.S
16libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS)
17
18all-local: $(PREINSTALL_FILES)
19
20PREINSTALL_DIRS =
21PREINSTALL_FILES =
22
23$(PROJECT_INCLUDE)/rtems/$(dirstamp):
24        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems
25        @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
26PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp)
27
28$(PROJECT_INCLUDE)/rtems/asm.h: asm.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
29        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/asm.h
30PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/asm.h
31
32$(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
33        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score
34        @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
35PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
36
37$(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
38        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h
39PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h
40
41$(PROJECT_INCLUDE)/rtems/score/h8300.h: rtems/score/h8300.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
42        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/h8300.h
43PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/h8300.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
49CLEANFILES = $(PREINSTALL_FILES)
50DISTCLEANFILES = $(PREINSTALL_DIRS)
51
52include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.