source: rtems/cpukit/score/cpu/h8300/Makefile.am @ 1d486eff

4.104.114.84.95
Last change on this file since 1d486eff was be2ed3e, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/06/04 at 02:21:50

2004-04-06 Ralf Corsepius <ralf_corsepius@…>

  • configure.ac: Remove (Merged into $(top_srcdir)/configure.ac).
  • Makefile.am: Don't include multilib.am. Reflect merging configure.ac into $(top_srcdir)/configure.ac.
  • Property mode set to 100644
File size: 2.0 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
14EXTRA_LIBRARIES = libscorecpu.a
15CLEANFILES = libscorecpu.a
16libscorecpu_a_SOURCES = cpu.c cpu_asm.S
17libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V)
18
19EXTRA_LIBRARIES += libscorecpu_g.a
20CLEANFILES += libscorecpu_g.a
21libscorecpu_g_a_SOURCES = $(libscorecpu_a_SOURCES)
22libscorecpu_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V)
23
24all-local: $(PREINSTALL_FILES) libscorecpu$(LIB_VARIANT).a
25
26PREINSTALL_DIRS =
27PREINSTALL_FILES =
28
29$(PROJECT_INCLUDE)/rtems/$(dirstamp):
30        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems
31        @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
32PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp)
33
34$(PROJECT_INCLUDE)/rtems/asm.h: asm.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
35        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/asm.h
36PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/asm.h
37
38$(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
39        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score
40        @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
41PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
42
43$(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
44        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h
45PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h
46
47$(PROJECT_INCLUDE)/rtems/score/h8300.h: rtems/score/h8300.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
48        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/h8300.h
49PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/h8300.h
50
51$(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
52        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h
53PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h
54
55CLEANFILES += $(PREINSTALL_FILES)
56DISTCLEANFILES = $(PREINSTALL_DIRS)
57
58include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.