source: rtems/cpukit/score/cpu/i386/Makefile.am @ 84c53452

4.104.114.84.95
Last change on this file since 84c53452 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.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/i386.h \
12    rtems/score/types.h rtems/score/interrupts.h rtems/score/registers.h \
13    rtems/score/idtr.h
14
15EXTRA_LIBRARIES = libscorecpu.a
16CLEANFILES = libscorecpu.a
17libscorecpu_a_SOURCES = cpu.c cpu_asm.S
18libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V)
19
20EXTRA_LIBRARIES += libscorecpu_g.a
21CLEANFILES += libscorecpu_g.a
22libscorecpu_g_a_SOURCES = $(libscorecpu_a_SOURCES)
23libscorecpu_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V)
24
25all-local: $(PREINSTALL_FILES) libscorecpu$(LIB_VARIANT).a
26
27PREINSTALL_DIRS =
28PREINSTALL_FILES =
29
30$(PROJECT_INCLUDE)/rtems/$(dirstamp):
31        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems
32        @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
33PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp)
34
35$(PROJECT_INCLUDE)/rtems/asm.h: asm.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
36        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/asm.h
37PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/asm.h
38
39$(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
40        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score
41        @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
42PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
43
44$(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
45        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h
46PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h
47
48$(PROJECT_INCLUDE)/rtems/score/i386.h: rtems/score/i386.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
49        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/i386.h
50PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/i386.h
51
52$(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
53        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h
54PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h
55
56$(PROJECT_INCLUDE)/rtems/score/interrupts.h: rtems/score/interrupts.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
57        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/interrupts.h
58PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/interrupts.h
59
60$(PROJECT_INCLUDE)/rtems/score/registers.h: rtems/score/registers.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
61        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/registers.h
62PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/registers.h
63
64$(PROJECT_INCLUDE)/rtems/score/idtr.h: rtems/score/idtr.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
65        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/idtr.h
66PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/idtr.h
67
68CLEANFILES += $(PREINSTALL_FILES)
69DISTCLEANFILES = $(PREINSTALL_DIRS)
70
71include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.