source: rtems/cpukit/score/cpu/arm/Makefile.am @ 49720ad0

4.104.114.84.95
Last change on this file since 49720ad0 was 49720ad0, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/01/03 at 06:11:27

2003-12-01 Ralf Corsepius <corsepiu@…>

  • Makefile.am:Restore further parts having been lost.
  • Property mode set to 100644
File size: 2.1 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../aclocal
6
7include $(top_srcdir)/../../../automake/multilib.am
8include $(top_srcdir)/../../../automake/compile.am
9include $(top_srcdir)/../../../automake/lib.am
10
11include_HEADERS = asm.h
12
13include_rtems_scoredir = $(includedir)/rtems/score
14include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/cpu_asm.h \
15    rtems/score/arm.h rtems/score/types.h
16
17C_FILES = cpu.c
18OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
19
20S_FILES = cpu_asm.S
21OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
22
23LIB = $(ARCH)/libscorecpu.a
24
25$(LIB): $(OBJS)
26        $(make-library)
27
28all-local: $(PREINSTALL_FILES) $(LIB)
29
30EXTRA_DIST = cpu.c cpu_asm.S
31
32PREINSTALL_FILES =
33
34$(PROJECT_INCLUDE)/$(dirstamp):
35        @$(mkinstalldirs) $(PROJECT_INCLUDE)
36        @: > $(PROJECT_INCLUDE)/$(dirstamp)
37PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp)
38
39$(PROJECT_INCLUDE)/asm.h: asm.h $(PROJECT_INCLUDE)/$(dirstamp)
40        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h
41PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h
42
43$(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
44        @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score
45        @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
46PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
47
48$(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
49        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h
50PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h
51
52$(PROJECT_INCLUDE)/rtems/score/cpu_asm.h: rtems/score/cpu_asm.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
53        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h
54PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h
55
56$(PROJECT_INCLUDE)/rtems/score/arm.h: rtems/score/arm.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
57        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/arm.h
58PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/arm.h
59
60$(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
61        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h
62PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h
63
64include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.