Changeset 7c9a598 in rtems for c/src/lib


Ignore:
Timestamp:
11/07/02 22:28:18 (21 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
716d0d4
Parents:
7395fa5
Message:

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

  • Makefile.am: Merge in include/Makefile.am.
  • include/Makefile.am: Remove.
  • configure.ac: Reflect changes above.
Location:
c/src/lib/libcpu/sh
Files:
3 deleted
8 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libcpu/sh/sh7032/ChangeLog

    r7395fa5 r7c9a598  
     12002-11-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * Makefile.am: Merge in include/Makefile.am.
     4        * include/Makefile.am: Remove.
     5        * configure.ac: Reflect changes above.
     6
    172002-11-01      Joel Sherrill <joel@OARcorp.com>
    28
  • c/src/lib/libcpu/sh/sh7032/Makefile.am

    r7395fa5 r7c9a598  
    55ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
    66
    7 SUBDIRS = include score clock timer sci delay
     7SUBDIRS = . score clock timer sci delay
     8
     9# NOTE: Unlike other CPUS, we install into a subdirectory to avoid
     10#       file name conflicts
     11include_shdir = $(includedir)/sh
     12include_rtems_scoredir = $(includedir)/rtems/score
     13
     14include_sh_HEADERS = include/sci.h include/sh7_pfc.h include/sh7_sci.h
     15include_rtems_score_HEADERS = include/ispsh7032.h include/iosh7032.h
     16
     17$(PROJECT_INCLUDE)/sh:
     18        $(mkinstalldirs) $@
     19
     20$(PROJECT_INCLUDE)/sh/%.h: include/%.h
     21        $(INSTALL_DATA) $< $@
     22
     23$(PROJECT_INCLUDE)/rtems/score/%.h: include/%.h
     24        $(INSTALL_DATA) $< $@
     25
     26TMPINSTALL_FILES = $(PROJECT_INCLUDE)/sh \
     27    $(include_sh_HEADERS:include/%.h=$(PROJECT_INCLUDE)/sh/%.h) \
     28    $(include_rtems_score_HEADERS:include/%.h=$(PROJECT_INCLUDE)/rtems/score/%.h)
     29
     30all-local: $(TMPINSTALL_FILES)
    831
    932include $(top_srcdir)/../../../../../../automake/subdirs.am
  • c/src/lib/libcpu/sh/sh7032/configure.ac

    r7395fa5 r7c9a598  
    3232clock/Makefile
    3333delay/Makefile
    34 include/Makefile
    3534score/Makefile
    3635timer/Makefile
  • c/src/lib/libcpu/sh/sh7045/ChangeLog

    r7395fa5 r7c9a598  
     12002-11-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * Makefile.am: Merge in include/Makefile.am.
     4        * include/Makefile.am: Remove.
     5        * configure.ac: Reflect changes above.
     6
    172002-11-01      Joel Sherrill <joel@OARcorp.com>
    28
  • c/src/lib/libcpu/sh/sh7045/Makefile.am

    r7395fa5 r7c9a598  
    55ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
    66
    7 SUBDIRS = include score clock sci timer
     7SUBDIRS = . score clock sci timer
     8
     9# NOTE: Unlike other CPUS, we install into a subdirectory to avoid
     10#       file name conflicts
     11include_shdir = $(includedir)/sh
     12include_rtems_scoredir = $(includedir)/rtems/score
     13
     14include_sh_HEADERS = include/io_types.h include/sci.h include/sh7_pfc.h \
     15    include/sh7_sci.h include/sci_termios.h
     16include_rtems_score_HEADERS = include/ispsh7045.h include/iosh7045.h
     17
     18$(PROJECT_INCLUDE)/sh:
     19        $(mkinstalldirs) $@
     20
     21$(PROJECT_INCLUDE)/sh/%.h: include/%.h
     22        $(INSTALL_DATA) $< $@
     23
     24$(PROJECT_INCLUDE)/rtems/score/%.h: include/%.h
     25        $(INSTALL_DATA) $< $@
     26
     27TMPINSTALL_FILES = $(PROJECT_INCLUDE)/sh \
     28    $(include_sh_HEADERS:include/%=$(PROJECT_INCLUDE)/sh/%) \
     29    $(include_rtems_score_HEADERS:include/%=$(PROJECT_INCLUDE)/rtems/score/%)
     30
     31all-local: $(TMPINSTALL_FILES)
    832
    933include $(top_srcdir)/../../../../../../automake/subdirs.am
  • c/src/lib/libcpu/sh/sh7750/ChangeLog

    r7395fa5 r7c9a598  
     12002-11-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * Makefile.am: Merge in include/Makefile.am.
     4        * include/Makefile.am: Remove.
     5        * configure.ac: Reflect changes above.
     6
    172002-11-01      Joel Sherrill <joel@OARcorp.com>
    28
  • c/src/lib/libcpu/sh/sh7750/Makefile.am

    r7395fa5 r7c9a598  
    55ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
    66
    7 SUBDIRS = include score clock sci timer
     7SUBDIRS = . score clock sci timer
     8
     9# NOTE: Unlike other CPUS, we install into a subdirectory to avoid
     10#       file name conflicts
     11include_shdir = $(includedir)/sh
     12include_rtems_scoredir = $(includedir)/rtems/score
     13
     14include_sh_HEADERS = include/sh/sh4uart.h
     15include_rtems_score_HEADERS = \
     16include/rtems/score/sh7750_regs.h \
     17include/rtems/score/ipl.h \
     18include/rtems/score/iosh7750.h \
     19include/rtems/score/ispsh7750.h \
     20include/rtems/score/sh4_regs.h
     21
     22$(PROJECT_INCLUDE)/sh:
     23        $(mkinstalldirs) $@
     24
     25$(PROJECT_INCLUDE)/rtems/score:
     26        $(mkinstalldirs) $@
     27
     28$(PROJECT_INCLUDE)/%.h: include/%.h
     29        $(INSTALL_DATA) $< $@
     30
     31TMPINSTALL_FILES = \
     32    $(PROJECT_INCLUDE)/sh \
     33    $(include_sh_HEADERS:include/%=$(PROJECT_INCLUDE)/%) \
     34    $(PROJECT_INCLUDE)/rtems/score \
     35    $(include_rtems_score_HEADERS:include/%=$(PROJECT_INCLUDE)/%)
     36
     37all-local: $(TMPINSTALL_FILES)
    838
    939include $(top_srcdir)/../../../../../../automake/subdirs.am
  • c/src/lib/libcpu/sh/sh7750/configure.ac

    r7395fa5 r7c9a598  
    3131AC_CONFIG_FILES([Makefile
    3232clock/Makefile
    33 include/Makefile
    3433score/Makefile
    3534sci/Makefile
Note: See TracChangeset for help on using the changeset viewer.