source: rtems/cpukit/score/cpu/i960/Makefile.am @ bf9ea48

4.104.114.84.95
Last change on this file since bf9ea48 was f08808e, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/11/04 at 05:40:53

2004-01-11 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Include compile.am, again.
  • Property mode set to 100644
File size: 1.8 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../aclocal
6
7include $(top_srcdir)/../../../automake/multilib.am
8include $(top_srcdir)/../../../automake/compile.am
9
10include_HEADERS = asm.h
11
12include_rtems_scoredir = $(includedir)/rtems/score
13include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/i960.h \
14    rtems/score/types.h
15
16EXTRA_LIBRARIES = libscorecpu.a
17CLEANFILES = libscorecpu.a
18libscorecpu_a_SOURCES = cpu.c cpu_asm.S
19libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V)
20
21EXTRA_LIBRARIES += libscorecpu_g.a
22CLEANFILES += libscorecpu_g.a
23libscorecpu_g_a_SOURCES = $(libscorecpu_a_SOURCES)
24libscorecpu_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V)
25
26all-local: $(PREINSTALL_FILES) libscorecpu$(LIB_VARIANT).a
27
28PREINSTALL_FILES =
29
30$(PROJECT_INCLUDE)/$(dirstamp):
31        @$(mkdir_p) $(PROJECT_INCLUDE)
32        @: > $(PROJECT_INCLUDE)/$(dirstamp)
33
34$(PROJECT_INCLUDE)/asm.h: asm.h $(PROJECT_INCLUDE)/$(dirstamp)
35        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h
36PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h
37
38$(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
39        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score
40        @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
41
42$(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
43        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h
44PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h
45
46$(PROJECT_INCLUDE)/rtems/score/i960.h: rtems/score/i960.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
47        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/i960.h
48PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/i960.h
49
50$(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
51        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h
52PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h
53
54include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.