source: rtems/cpukit/score/cpu/i386/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.5 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
15noinst_LIBRARIES = libscorecpu.a
16libscorecpu_a_SOURCES = cpu.c cpu_asm.S
17libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS)
18
19all-local: $(PREINSTALL_FILES)
20
21PREINSTALL_DIRS =
22PREINSTALL_FILES =
23
24$(PROJECT_INCLUDE)/rtems/$(dirstamp):
25        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems
26        @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
27PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp)
28
29$(PROJECT_INCLUDE)/rtems/asm.h: asm.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
30        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/asm.h
31PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/asm.h
32
33$(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
34        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score
35        @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
36PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
37
38$(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
39        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h
40PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h
41
42$(PROJECT_INCLUDE)/rtems/score/i386.h: rtems/score/i386.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
43        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/i386.h
44PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/i386.h
45
46$(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
47        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h
48PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h
49
50$(PROJECT_INCLUDE)/rtems/score/interrupts.h: rtems/score/interrupts.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
51        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/interrupts.h
52PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/interrupts.h
53
54$(PROJECT_INCLUDE)/rtems/score/registers.h: rtems/score/registers.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
55        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/registers.h
56PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/registers.h
57
58$(PROJECT_INCLUDE)/rtems/score/idtr.h: rtems/score/idtr.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
59        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/idtr.h
60PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/idtr.h
61
62CLEANFILES = $(PREINSTALL_FILES)
63DISTCLEANFILES = $(PREINSTALL_DIRS)
64
65include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.