source: rtems/cpukit/score/cpu/no_cpu/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.0 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/no_cpu.h \
15    rtems/score/cpu_asm.h rtems/score/types.h
16
17C_FILES = cpu.c cpu_asm.c
18OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
19
20LIB = $(ARCH)/libscorecpu.a
21
22$(LIB): $(OBJS)
23        $(make-library)
24
25all-local: $(PREINSTALL_FILES) $(LIB)
26
27EXTRA_DIST = cpu.c cpu_asm.c
28
29PREINSTALL_FILES =
30
31$(PROJECT_INCLUDE)/$(dirstamp):
32        @$(mkinstalldirs) $(PROJECT_INCLUDE)
33        @: > $(PROJECT_INCLUDE)/$(dirstamp)
34PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp)
35
36$(PROJECT_INCLUDE)/asm.h: asm.h $(PROJECT_INCLUDE)/$(dirstamp)
37        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h
38PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h
39
40$(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
41        @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score
42        @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
43PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
44
45$(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
46        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h
47PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h
48
49$(PROJECT_INCLUDE)/rtems/score/no_cpu.h: rtems/score/no_cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
50        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/no_cpu.h
51PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/no_cpu.h
52
53$(PROJECT_INCLUDE)/rtems/score/cpu_asm.h: rtems/score/cpu_asm.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
54        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h
55PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h
56
57$(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
58        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h
59PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h
60
61include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.