source: rtems/cpukit/score/cpu/mips/Makefile.am @ 7273b6e

4.104.114.84.95
Last change on this file since 7273b6e was 7273b6e, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:54:58

2002-03-27 Ralf Corsepius <corsepiu@…>

  • configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]).
  • Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Property mode set to 100644
File size: 1.4 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
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 idtcpu.h iregdef.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/mips.h \
30        rtems/score/mipstypes.h
31PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \
32    $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)
33
34$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
35        $(INSTALL_DATA) $< $@
36
37C_FILES = cpu.c
38C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
39
40S_FILES = cpu_asm.S
41S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
42
43REL = $(ARCH)/rtems-cpu.rel
44
45rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
46
47$(REL): $(rtems_cpu_rel_OBJECTS)
48        $(make-rel)
49
50TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
51
52all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
53    $(TMPINSTALL_FILES)
54
55.PRECIOUS: $(REL)
56
57EXTRA_DIST = cpu.c cpu_asm.S rtems.c
58
59include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.