Changeset 7a5a3a41 in rtems


Ignore:
Timestamp:
01/05/04 07:17:01 (20 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
48a1abf
Parents:
1b186e5
Message:

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

  • start/Makefile.am: Remove.
  • Makefile.am: Merge-in start/Makefile.am.
  • configure.ac: Reflect changes above.
Location:
c/src/lib/libbsp/sh
Files:
5 deleted
15 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/sh/gensh1/ChangeLog

    r1b186e5 r7a5a3a41  
     12004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * start/Makefile.am: Remove.
     4        * Makefile.am: Merge-in start/Makefile.am.
     5        * configure.ac: Reflect changes above.
     6
    172004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/lib/libbsp/sh/gensh1/Makefile.am

    r1b186e5 r7a5a3a41  
    55ACLOCAL_AMFLAGS = -I ../../../../aclocal
    66
     7include $(top_srcdir)/../../../../automake/compile.am
     8include $(top_srcdir)/../../bsp.am
     9
    710# wrapup is the one that actually builds and installs the library
    811# from the individual .rel files built in other directories
    9 SUBDIRS = . start startup scitab console wrapup
    10 
    11 include $(top_srcdir)/../../bsp.am
     12SUBDIRS = . startup scitab console wrapup
    1213
    1314include_HEADERS += include/coverhd.h
    1415
    15 all-local: $(PREINSTALL_FILES)
     16S_FILES = start/start.S
     17$(ARCH)/%$(LIB_VARIANT).$(OBJEXT): start/start.S $(ARCH)/$(dirstamp)
     18        ${CCASCOMPILE} -DASM -o $@ -c $<
    1619
    17 EXTRA_DIST = times
     20project_lib_DATA = $(ARCH)/start$(LIB_VARIANT).$(OBJEXT)
     21
     22all-local: $(PREINSTALL_FILES) $(TMPINSTALL_FILES)
     23
     24EXTRA_DIST = $(S_FILES)
     25
     26EXTRA_DIST += times
     27
     28TMPINSTALL_FILES =
    1829
    1930$(PROJECT_INCLUDE)/coverhd.h: include/coverhd.h $(PROJECT_INCLUDE)/$(dirstamp)
     
    2132PREINSTALL_FILES += $(PROJECT_INCLUDE)/coverhd.h
    2233
     34$(PROJECT_LIB)/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start$(LIB_VARIANT).$(OBJEXT) $(PROJECT_LIB)/$(dirstamp)
     35        $(INSTALL_DATA) $< $(PROJECT_LIB)/start$(LIB_VARIANT).$(OBJEXT)
     36TMPINSTALL_FILES += $(PROJECT_LIB)/start$(LIB_VARIANT).$(OBJEXT)
     37
    2338include $(top_srcdir)/../../../../automake/subdirs.am
    2439include $(top_srcdir)/../../../../automake/local.am
  • c/src/lib/libbsp/sh/gensh1/configure.ac

    r1b186e5 r7a5a3a41  
    2626console/Makefile
    2727scitab/Makefile
    28 start/Makefile
    2928startup/Makefile
    3029wrapup/Makefile])
  • c/src/lib/libbsp/sh/gensh2/ChangeLog

    r1b186e5 r7a5a3a41  
     12004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * start/Makefile.am: Remove.
     4        * Makefile.am: Merge-in start/Makefile.am.
     5        * configure.ac: Reflect changes above.
     6
    172004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/lib/libbsp/sh/gensh2/Makefile.am

    r1b186e5 r7a5a3a41  
    55ACLOCAL_AMFLAGS = -I ../../../../aclocal
    66
     7include $(top_srcdir)/../../../../automake/compile.am
     8include $(top_srcdir)/../../bsp.am
     9
    710## wrapup is the one that actually builds and installs the library
    811## from the individual .rel files built in other directories
    9 SUBDIRS = . start startup scitab console wrapup
    10 
    11 include $(top_srcdir)/../../bsp.am
     12SUBDIRS = . startup scitab console wrapup
    1213
    1314include_HEADERS += include/coverhd.h
    1415
    15 all-local: $(PREINSTALL_FILES)
     16S_FILES = start/start.S
     17$(ARCH)/%$(LIB_VARIANT).$(OBJEXT): start/start.S $(ARCH)/$(dirstamp)
     18        ${CCASCOMPILE} -DASM -o $@ -c $<
     19
     20project_lib_DATA = $(ARCH)/start$(LIB_VARIANT).$(OBJEXT)
     21
     22all-local: $(PREINSTALL_FILES) $(TMPINSTALL_FILES)
     23
     24TMPINSTALL_FILES =
    1625
    1726$(PROJECT_INCLUDE)/coverhd.h: include/coverhd.h $(PROJECT_INCLUDE)/$(dirstamp)
     
    1928PREINSTALL_FILES += $(PROJECT_INCLUDE)/coverhd.h
    2029
     30$(PROJECT_LIB)/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start$(LIB_VARIANT).$(OBJEXT) $(PROJECT_LIB)/$(dirstamp)
     31        $(INSTALL_DATA) $< $(PROJECT_LIB)/start$(LIB_VARIANT).$(OBJEXT)
     32TMPINSTALL_FILES += $(PROJECT_LIB)/start$(LIB_VARIANT).$(OBJEXT)
     33
    2134include $(top_srcdir)/../../../../automake/subdirs.am
    2235include $(top_srcdir)/../../../../automake/local.am
  • c/src/lib/libbsp/sh/gensh2/configure.ac

    r1b186e5 r7a5a3a41  
    3535console/Makefile
    3636scitab/Makefile
    37 start/Makefile
    3837startup/Makefile
    3938wrapup/Makefile])
  • c/src/lib/libbsp/sh/gensh4/ChangeLog

    r1b186e5 r7a5a3a41  
     12004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * start/Makefile.am: Remove.
     4        * Makefile.am: Merge-in start/Makefile.am.
     5        * configure.ac: Reflect changes above.
     6
    172004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/lib/libbsp/sh/gensh4/Makefile.am

    r1b186e5 r7a5a3a41  
    55ACLOCAL_AMFLAGS = -I ../../../../aclocal
    66
     7include $(top_srcdir)/../../../../automake/compile.am
     8include $(top_srcdir)/../../bsp.am
     9
    710## wrapup is the one that actually builds and installs the library
    811## from the individual .rel files built in other directories
    9 SUBDIRS = . start startup console hw_init wrapup
    10 
    11 include $(top_srcdir)/../../bsp.am
     12SUBDIRS = . startup console hw_init wrapup
    1213
    1314include_HEADERS += include/sdram.h
    1415include_HEADERS += include/coverhd.h
    1516
    16 all-local: $(PREINSTALL_FILES)
     17S_FILES = start/start.S
     18$(ARCH)/%$(LIB_VARIANT).$(OBJEXT): start/start.S $(ARCH)/$(dirstamp)
     19        ${CCASCOMPILE} -DASM -o $@ -c $<
     20
     21project_lib_DATA = $(ARCH)/start$(LIB_VARIANT).$(OBJEXT)
     22
     23all-local: $(PREINSTALL_FILES) $(TMPINSTALL_FILES)
    1724
    1825EXTRA_DIST = times
     26
     27TMPINSTALL_FILES =
    1928
    2029$(PROJECT_INCLUDE)/sdram.h: include/sdram.h $(PROJECT_INCLUDE)/$(dirstamp)
     
    2635PREINSTALL_FILES += $(PROJECT_INCLUDE)/coverhd.h
    2736
     37$(PROJECT_LIB)/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start$(LIB_VARIANT).$(OBJEXT) $(PROJECT_LIB)/$(dirstamp)
     38        $(INSTALL_DATA) $< $(PROJECT_LIB)/start$(LIB_VARIANT).$(OBJEXT)
     39TMPINSTALL_FILES += $(PROJECT_LIB)/start$(LIB_VARIANT).$(OBJEXT)
     40
    2841include $(top_srcdir)/../../../../automake/subdirs.am
    2942include $(top_srcdir)/../../../../automake/local.am
  • c/src/lib/libbsp/sh/gensh4/configure.ac

    r1b186e5 r7a5a3a41  
    3434# Explicitly list all Makefiles here
    3535AC_CONFIG_FILES([Makefile
    36 start/Makefile
    3736startup/Makefile
    3837hw_init/Makefile
  • c/src/lib/libbsp/sh/shsim/ChangeLog

    r1b186e5 r7a5a3a41  
     12004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * start/Makefile.am: Remove.
     4        * Makefile.am: Merge-in start/Makefile.am.
     5        * configure.ac: Reflect changes above.
     6
    172004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/lib/libbsp/sh/shsim/Makefile.am

    r1b186e5 r7a5a3a41  
    55ACLOCAL_AMFLAGS = -I ../../../../aclocal
    66
     7include $(top_srcdir)/../../../../automake/compile.am
     8include $(top_srcdir)/../../bsp.am
     9
    710# wrapup is the one that actually builds and installs the library
    811# from the individual .rel files built in other directories
    9 SUBDIRS = . start startup clock scitab gdbsci console wrapup
    10 
    11 include $(top_srcdir)/../../bsp.am
     12SUBDIRS = . startup clock scitab gdbsci console wrapup
    1213
    1314include_HEADERS += include/gdbsci.h
    1415nodist_include_HEADERS += $(top_srcdir)/../../shared/include/coverhd.h
    1516
    16 all-local: $(PREINSTALL_FILES)
     17S_FILES = start/start.S
     18$(ARCH)/%$(LIB_VARIANT).$(OBJEXT): start/start.S $(ARCH)/$(dirstamp)
     19        ${CCASCOMPILE} -DASM -o $@ -c $<
     20
     21project_lib_DATA = $(ARCH)/start$(LIB_VARIANT).$(OBJEXT)
     22
     23all-local: $(PREINSTALL_FILES) $(TMPINSTALL_FILES)
     24
     25EXTRA_DIST = $(S_FILES)
     26
     27TMPINSTALL_FILES =
    1728
    1829$(PROJECT_INCLUDE)/gdbsci.h: include/gdbsci.h $(PROJECT_INCLUDE)/$(dirstamp)
     
    2435PREINSTALL_FILES += $(PROJECT_INCLUDE)/coverhd.h
    2536
     37$(PROJECT_LIB)/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start$(LIB_VARIANT).$(OBJEXT) $(PROJECT_LIB)/$(dirstamp)
     38        $(INSTALL_DATA) $< $(PROJECT_LIB)/start$(LIB_VARIANT).$(OBJEXT)
     39TMPINSTALL_FILES += $(PROJECT_LIB)/start$(LIB_VARIANT).$(OBJEXT)
     40
    2641include $(top_srcdir)/../../../../automake/subdirs.am
    2742include $(top_srcdir)/../../../../automake/local.am
  • c/src/lib/libbsp/sh/shsim/configure.ac

    r1b186e5 r7a5a3a41  
    7070scitab/Makefile
    7171gdbsci/Makefile
    72 start/Makefile
    7372startup/Makefile
    7473wrapup/Makefile])
  • c/src/lib/libbsp/sh/simsh4/ChangeLog

    r1b186e5 r7a5a3a41  
     12004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * start/Makefile.am: Remove.
     4        * Makefile.am: Merge-in start/Makefile.am.
     5        * configure.ac: Reflect changes above.
     6
    172004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/lib/libbsp/sh/simsh4/Makefile.am

    r1b186e5 r7a5a3a41  
    55ACLOCAL_AMFLAGS = -I ../../../../aclocal
    66
     7include $(top_srcdir)/../../../../automake/compile.am
     8include $(top_srcdir)/../../bsp.am
     9
    710## wrapup is the one that actually builds and installs the library
    811## from the individual .rel files built in other directories
    9 SUBDIRS = . start startup console clock timer wrapup
     12SUBDIRS = . startup console clock timer wrapup
    1013SUBDIRS += tools
    1114
     
    1316# ramdisk
    1417
    15 include $(top_srcdir)/../../bsp.am
    16 
    1718include_HEADERS += include/syscall.h
    1819include_HEADERS += include/ramdisk.h
    1920include_HEADERS += include/coverhd.h
    2021
    21 all-local: $(PREINSTALL_FILES)
     22S_FILES = start/start.S
     23$(ARCH)/%$(LIB_VARIANT).$(OBJEXT): start/start.S $(ARCH)/$(dirstamp)
     24        ${CCASCOMPILE} -DASM -o $@ -c $<
     25
     26project_lib_DATA = $(ARCH)/start$(LIB_VARIANT).$(OBJEXT)
     27
     28all-local: $(PREINSTALL_FILES) $(TMPINSTALL_FILES)
     29
     30EXTRA_DIST = $(S_FILES)
    2231
    2332$(PROJECT_INCLUDE)/syscall.h: include/syscall.h $(PROJECT_INCLUDE)/$(dirstamp)
  • c/src/lib/libbsp/sh/simsh4/configure.ac

    r1b186e5 r7a5a3a41  
    3737AC_CONFIG_FILES([Makefile
    3838console/Makefile
    39 start/Makefile
    4039startup/Makefile
    4140clock/Makefile
Note: See TracChangeset for help on using the changeset viewer.