source: rtems/c/src/lib/libcpu/mips/tx39/Makefile.am @ 9a87463

4.104.114.84.95
Last change on this file since 9a87463 was 9a87463, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/18/04 at 09:18:06

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

  • clock/Makefile.am: Convert to using automake compilation rules.
  • mongoosev/Makefile.am: Ditto.
  • r46xx/Makefile.am: Ditto.
  • shared/Makefile.am: Ditto.
  • timer/Makefile.am: Ditto.
  • tx39/Makefile.am: Ditto.
  • Makefile.am: Remove conditional subdirs.
  • configure.ac: Add subdir-object to AUTOMAKE_OPTIONS. Require automake-1.8.2. Add AM_PROG_CC_C_O.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
6
7EXTRA_PROGRAMS =
8CLEANFILES =
9noinst_DATA =
10
11include $(top_srcdir)/../../../automake/compile.am
12include $(top_srcdir)/../../../automake/lib.am
13
14if tx39
15include_libcpudir = $(includedir)/libcpu
16include_libcpu_HEADERS = include/tx3904.h
17
18EXTRA_PROGRAMS += vectorisrs.rel
19CLEANFILES += vectorisrs.rel
20vectorisrs_rel_SOURCES = vectorisrs/maxvectors.c vectorisrs/vectorisrs.c
21vectorisrs_rel_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V)
22vectorisrs_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
23
24EXTRA_PROGRAMS += vectorisrs_g.rel
25CLEANFILES += vectorisrs_g.rel
26vectorisrs_g_rel_SOURCES = $(vectorisrs_rel_SOURCES)
27vectorisrs_g_rel_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V)
28vectorisrs_g_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
29
30noinst_DATA += vectorisrs$(LIB_VARIANT).rel
31endif
32
33all-local: $(PREINSTALL_FILES)
34
35PREINSTALL_FILES =
36
37if tx39
38$(PROJECT_INCLUDE)/libcpu/$(dirstamp):
39        @$(mkdir_p) $(PROJECT_INCLUDE)/libcpu
40        @: > $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
41PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
42
43$(PROJECT_INCLUDE)/libcpu/tx3904.h: include/tx3904.h $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
44        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/libcpu/tx3904.h
45PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu/tx3904.h
46endif
47
48CLEANFILES += $(PREINSTALL_FILES)
49
50include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.