source: rtems/cpukit/score/cpu/hppa1.1/Makefile.am @ 2f6261d

4.104.114.84.95
Last change on this file since 2f6261d was 2f6261d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 06/17/02 at 09:22:48

2002-06-17 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Include $(top_srcdir)/../../../automake/*.am. Use ../../../aclocal.
  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[df49c60]1##
[955a9ba7]2## $Id$
[df49c60]3##
[955a9ba7]4
[2f6261d]5ACLOCAL_AMFLAGS = -I ../../../aclocal
[955a9ba7]6
[2f6261d]7include $(top_srcdir)/../../../automake/multilib.am
8include $(top_srcdir)/../../../automake/compile.am
9include $(top_srcdir)/../../../automake/lib.am
[8b25dc6]10
11$(PROJECT_INCLUDE)/%.h: %.h
12        $(INSTALL_DATA) $< $@
13
14$(PROJECT_INCLUDE):
15        $(mkinstalldirs) $@
16
17$(PROJECT_INCLUDE)/rtems:
18        $(mkinstalldirs) $@
19
20$(PROJECT_INCLUDE)/rtems/score:
21        $(mkinstalldirs) $@
22
23include_HEADERS= asm.h
24PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
25
26include_rtems_scoredir = $(includedir)/rtems/score
27include_rtems_score_HEADERS = \
28    rtems/score/cpu.h \
29    rtems/score/cpu_asm.h \
30    rtems/score/hppa.h \
[fc9d36c]31    rtems/score/types.h \
[8b25dc6]32    rtems/score/offsets.h
33PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \
34    $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)
[955a9ba7]35
36C_FILES = cpu.c
[4e36a2f]37C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
[955a9ba7]38
39S_FILES = cpu_asm.S
[4e36a2f]40S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
[955a9ba7]41
42REL = $(ARCH)/rtems-cpu.rel
43
[4e36a2f]44rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
45
46$(REL): $(rtems_cpu_rel_OBJECTS)
[955a9ba7]47        $(make-rel)
48
[e9718415]49TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
[4e36a2f]50
[329509fb]51all-local: $(ARCH) $(rtems_cpu_rel_OBJECTS) $(REL) \
[df49c60]52    $(TMPINSTALL_FILES)
[4e36a2f]53
54.PRECIOUS: $(REL)
[955a9ba7]55
[4e36a2f]56EXTRA_DIST = cpu.c cpu_asm.S rtems.S
[955a9ba7]57
[8b25dc6]58# FIXME: We should get rid of genoffsets
59GENOFFSETS = $(PROJECT_TOPdir)/tools/cpu/hppa1.1/genoffsets
60
61GENERIC_H_FILES = rtems/score/offsets.h
62rtems/score/offsets.h: $(GENOFFSETS) cpu.h
63        @(mkinstalldirs) rtems/score
64        $(RM) $@
65        $(GENOFFSETS) > $@
66CLEANFILES = rtems/score/offsets.h
67
[2f6261d]68include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.