source: rtems/cpukit/score/cpu/mips64orion/Makefile.am @ 53f6727

4.104.114.84.95
Last change on this file since 53f6727 was 53f6727, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/22/02 at 13:51:58

2002-07-22 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Use .$(OBJEXT) instead of .o.
  • Property mode set to 100644
File size: 1.2 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
[955a9ba7]10
[14926c2e]11$(PROJECT_INCLUDE)/%.h: %.h
12        $(INSTALL_DATA) $< $@
13
[955a9ba7]14$(PROJECT_INCLUDE):
15        $(mkinstalldirs) $@
16
[14926c2e]17$(PROJECT_INCLUDE)/rtems:
18        $(mkinstalldirs) $@
19
20$(PROJECT_INCLUDE)/rtems/score:
21        $(mkinstalldirs) $@
22
23include_HEADERS = asm.h cpu_asm.h idtcpu.h idtmon.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/mips64orion.h \
[eb4536c]30    rtems/score/types.h
[14926c2e]31PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \
32    $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)
[955a9ba7]33
[14926c2e]34C_FILES = cpu.c
[53f6727]35C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
[14926c2e]36
37S_FILES = cpu_asm.S
[53f6727]38S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
[14926c2e]39
[955a9ba7]40REL = $(ARCH)/rtems-cpu.rel
41
[4e36a2f]42rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
43
44$(REL): $(rtems_cpu_rel_OBJECTS)
[955a9ba7]45        $(make-rel)
46
[df49c60]47all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
48    $(TMPINSTALL_FILES)
[4e36a2f]49
50.PRECIOUS: $(REL)
[955a9ba7]51
[84fa187]52EXTRA_DIST = cpu.c cpu_asm.S
[955a9ba7]53
[2f6261d]54include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.