Changeset 64eb0c7 in rtems for c/src/lib/libbsp/sh


Ignore:
Timestamp:
09/29/08 10:19:37 (15 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 5, master
Children:
234f3ecc
Parents:
97a868fd
Message:

2008-09-29 Ralf Corsépius <ralf.corsepius@…>

  • Makefile.am: Eliminate *_SOURCES.
Location:
c/src/lib/libbsp/sh
Files:
10 edited

Legend:

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

    r97a868fd r64eb0c7  
     12008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
     2
     3        * Makefile.am: Eliminate *_SOURCES.
     4
    152008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
    26
  • c/src/lib/libbsp/sh/gensh1/Makefile.am

    r97a868fd r64eb0c7  
    3030
    3131noinst_LIBRARIES = libbsp.a
     32libbsp_a_SOURCES =
    3233
    3334SHGEN = $(PROJECT_TOPdir)/tools/cpu/sh/shgen
     
    3839CLEANFILES = scitab.c
    3940
    40 startup_SOURCES = ../../shared/bsplibc.c ../../shared/bsppost.c \
     41# startup
     42libbsp_a_SOURCES += ../../shared/bsplibc.c ../../shared/bsppost.c \
    4143    ../../shared/bsppredriverhook.c ../shared/bspstart.c \
    4244    ../../shared/bspclean.c ../../shared/bspreset_fatal.c \
     
    4446    ../../shared/sbrk.c ../../shared/bootcard.c ../shared/bsphwinit.c \
    4547    ../../shared/gnatinstallhandler.c
    46 scitab_SOURCES = scitab.c
    47 console_SOURCES = ../../sh/shared/console.c
    48 debugio_SOURCES = ../../shared/dummy_printk_support.c
    49 
    50 libbsp_a_SOURCES = $(startup_SOURCES) $(scitab_SOURCES) $(console_SOURCES) \
    51     $(debugio_SOURCES)
     48# scitab
     49libbsp_a_SOURCES += scitab.c
     50# console
     51libbsp_a_SOURCES += ../../sh/shared/console.c
     52# debugio
     53libbsp_a_SOURCES += ../../shared/dummy_printk_support.c
    5254
    5355libbsp_a_LIBADD = \
  • c/src/lib/libbsp/sh/gensh2/ChangeLog

    r97a868fd r64eb0c7  
     12008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
     2
     3        * Makefile.am: Eliminate *_SOURCES.
     4
    152008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
    26
  • c/src/lib/libbsp/sh/gensh2/Makefile.am

    r97a868fd r64eb0c7  
    3030
    3131noinst_LIBRARIES = libbsp.a
     32libbsp_a_SOURCES =
    3233
    3334SHGEN = $(PROJECT_TOPdir)/tools/cpu/sh/shgen
     
    3839CLEANFILES = scitab.c
    3940
    40 startup_SOURCES = startup/hw_init.c ../../shared/bsplibc.c \
     41# startup
     42libbsp_a_SOURCES += startup/hw_init.c ../../shared/bsplibc.c \
    4143    ../../shared/bsppost.c ../../shared/bsppredriverhook.c \
    4244    ../shared/bspstart.c ../../shared/bsppretaskinghook.c \
     
    4446    ../../shared/gnatinstallhandler.c ../../shared/bspclean.c \
    4547    ../shared/bsphwinit.c
    46 scitab_SOURCES = scitab.c
    47 console_SOURCES = ../../sh/shared/console.c console/config.c
    48 debugio_SOURCES = ../../shared/dummy_printk_support.c
     48# scitab
     49libbsp_a_SOURCES += scitab.c
     50# console
     51libbsp_a_SOURCES += ../../sh/shared/console.c console/config.c
     52# debugio
     53libbsp_a_SOURCES += ../../shared/dummy_printk_support.c
    4954
    50 libbsp_a_SOURCES = $(startup_SOURCES) $(scitab_SOURCES) $(console_SOURCES) \
    51     $(debugio_SOURCES)
    5255libbsp_a_LIBADD = \
    5356    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/clock.rel \
  • c/src/lib/libbsp/sh/gensh4/ChangeLog

    r97a868fd r64eb0c7  
     12008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
     2
     3        * Makefile.am: Eliminate *_SOURCES.
     4
    152008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
    26
  • c/src/lib/libbsp/sh/gensh4/Makefile.am

    r97a868fd r64eb0c7  
    3232
    3333noinst_LIBRARIES = libbsp.a
     34libbsp_a_SOURCES =
    3435
    35 startup_SOURCES = ../../shared/bsplibc.c ../../shared/bsppost.c \
     36# startup
     37libbsp_a_SOURCES += ../../shared/bsplibc.c ../../shared/bsppost.c \
    3638    ../../shared/bsppredriverhook.c ../shared/bspstart.c \
    3739    ../../shared/bsppretaskinghook.c ../../shared/bspgetworkarea.c \
    3840    ../../shared/bspclean.c ../../shared/sbrk.c ../../shared/bootcard.c \
    3941    ../../shared/gnatinstallhandler.c ../shared/bsphwinit.c
    40 console_SOURCES = console/console.c ../../shared/dummy_printk_support.c
    41 hw_init_SOURCES = hw_init/hw_init.c
    42 
    43 libbsp_a_SOURCES = $(startup_SOURCES) $(hw_init_SOURCES) $(console_SOURCES)
     42# console
     43libbsp_a_SOURCES += console/console.c ../../shared/dummy_printk_support.c
     44# hw_init
     45libbsp_a_SOURCES += hw_init/hw_init.c
    4446
    4547libbsp_a_LIBADD = \
  • c/src/lib/libbsp/sh/shsim/ChangeLog

    r97a868fd r64eb0c7  
     12008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
     2
     3        * Makefile.am: Eliminate *_SOURCES.
     4
    152008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
    26
  • c/src/lib/libbsp/sh/shsim/Makefile.am

    r97a868fd r64eb0c7  
    3030
    3131noinst_LIBRARIES = libbsp.a
     32libbsp_a_SOURCES =
    3233
    3334SHGEN = $(PROJECT_TOPdir)/tools/cpu/sh/shgen
     
    3839CLEANFILES = scitab.c
    3940
    40 startup_SOURCES = ../../shared/bsplibc.c ../../shared/bsppost.c \
     41# startup
     42libbsp_a_SOURCES += ../../shared/bsplibc.c ../../shared/bsppost.c \
    4143    ../../shared/bsppredriverhook.c ../shared/bspstart.c \
    4244    ../../shared/bsppretaskinghook.c ../../shared/bspgetworkarea.c \
    4345    ../../shared/bspclean.c ../../shared/sbrk.c ../../shared/bootcard.c \
    4446    ../../shared/gnatinstallhandler.c ../shared/bsphwinit.c
    45 clock_SOURCES = ../../shared/clock_driver_simidle.c
     47# clock
     48libbsp_a_SOURCES += ../../shared/clock_driver_simidle.c
    4649
    47 trap34_SOURCES = trap34/console-io.c trap34/console-support.S \
     50# trap34
     51libbsp_a_SOURCES += trap34/console-io.c trap34/console-support.S \
    4852    ../../shared/dummy_printk_support.c
    49 console_SOURCES = ../../shared/console-polled.c
    50 
    51 libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
    52     $(scitab_SOURCES) $(trap34_SOURCES)
     53# console
     54libbsp_a_SOURCES += ../../shared/console-polled.c
    5355
    5456libbsp_a_LIBADD = \
  • c/src/lib/libbsp/sh/simsh4/ChangeLog

    r97a868fd r64eb0c7  
     12008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
     2
     3        * Makefile.am: Eliminate *_SOURCES.
     4
    152008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
    26
  • c/src/lib/libbsp/sh/simsh4/Makefile.am

    r97a868fd r64eb0c7  
    3737
    3838noinst_LIBRARIES = libbsp.a
     39libbsp_a_SOURCES =
    3940
    40 startup_SOURCES = startup/hw_init.c ../../shared/bsplibc.c \
     41# startup
     42libbsp_a_SOURCES += startup/hw_init.c ../../shared/bsplibc.c \
    4143    ../../shared/bsppost.c ../../shared/bsppredriverhook.c \
    4244    ../../shared/bsppretaskinghook.c ../../shared/bspgetworkarea.c \
     
    4446    ../../shared/bootcard.c ../../shared/gnatinstallhandler.c \
    4547    ../shared/bsphwinit.c
    46 clock_SOURCES = clock/ckinit.c
    47 console_SOURCES = console/console.c ../../shared/dummy_printk_support.c
    48 timer_SOURCES = timer/timer.c
    49 
    50 libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
    51     $(timer_SOURCES)
     48# clock
     49libbsp_a_SOURCES += clock/ckinit.c
     50# console
     51libbsp_a_SOURCES += console/console.c ../../shared/dummy_printk_support.c
     52# timer
     53libbsp_a_SOURCES += timer/timer.c
    5254
    5355libbsp_a_LIBADD = \
Note: See TracChangeset for help on using the changeset viewer.