source: rtems/c/src/lib/libcpu/sh/sh7750/include/Makefile.am @ 4cf920c4

4.104.114.84.95
Last change on this file since 4cf920c4 was 4cf920c4, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:48:26

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

  • configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]).
  • clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Makefile.am: Remove AUTOMAKE_OPTIONS.
  • include/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • sci/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • score/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Property mode set to 100644
File size: 822 bytes
Line 
1##
2## $Id$
3##
4
5
6# NOTE: Unlike other CPUS, we install into a subdirectory to avoid
7#       file name conflicts
8include_shdir = $(includedir)/sh
9include_rtems_scoredir = $(includedir)/rtems/score
10
11include_sh_HEADERS = sh/sh4uart.h
12include_rtems_score_HEADERS = \
13rtems/score/sh7750_regs.h \
14rtems/score/ipl.h \
15rtems/score/iosh7750.h \
16rtems/score/ispsh7750.h \
17rtems/score/sh4_regs.h
18
19$(PROJECT_INCLUDE)/sh:
20        $(mkinstalldirs) $@
21
22$(PROJECT_INCLUDE)/rtems/score:
23        $(mkinstalldirs) $@
24
25$(PROJECT_INCLUDE)/%.h: %.h
26        $(INSTALL_DATA) $< $@
27
28TMPINSTALL_FILES = \
29    $(PROJECT_INCLUDE)/sh \
30    $(include_sh_HEADERS:%=$(PROJECT_INCLUDE)/%) \
31    $(PROJECT_INCLUDE)/rtems/score \
32    $(include_rtems_score_HEADERS:%=$(PROJECT_INCLUDE)/%)
33
34all-local: $(TMPINSTALL_FILES)
35
36include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.