forked from Imagelibrary/rtems
2008-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.am: Eliminate bsp.am. Build startup files as side-effect of building libbspstart.a, using automake-rules.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2008-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
|
* Makefile.am: Eliminate bsp.am. Build startup files as side-effect
|
||||||
|
of building libbspstart.a, using automake-rules.
|
||||||
|
|
||||||
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* Makefile.am: Eliminate *_SOURCES.
|
* Makefile.am: Eliminate *_SOURCES.
|
||||||
|
|||||||
@@ -5,7 +5,6 @@
|
|||||||
ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../bsp.am
|
|
||||||
|
|
||||||
include_bspdir = $(includedir)/bsp
|
include_bspdir = $(includedir)/bsp
|
||||||
|
|
||||||
@@ -20,15 +19,13 @@ DISTCLEANFILES = include/bspopts.h
|
|||||||
|
|
||||||
include_HEADERS += include/coverhd.h
|
include_HEADERS += include/coverhd.h
|
||||||
|
|
||||||
EXTRA_DIST = start/start.S
|
noinst_LIBRARIES = libbspstart.a
|
||||||
start.$(OBJEXT): start/start.S
|
libbspstart_a_SOURCES = start/start.S
|
||||||
$(CPPASCOMPILE) -o $@ -c $<
|
|
||||||
|
|
||||||
project_lib_DATA = start.$(OBJEXT)
|
project_lib_DATA = start.$(OBJEXT)
|
||||||
|
|
||||||
dist_project_lib_DATA += startup/linkcmds
|
dist_project_lib_DATA += startup/linkcmds
|
||||||
|
|
||||||
noinst_LIBRARIES = libbsp.a
|
noinst_LIBRARIES += libbsp.a
|
||||||
libbsp_a_SOURCES =
|
libbsp_a_SOURCES =
|
||||||
|
|
||||||
SHGEN = $(PROJECT_TOPdir)/tools/cpu/sh/shgen
|
SHGEN = $(PROJECT_TOPdir)/tools/cpu/sh/shgen
|
||||||
@@ -59,7 +56,7 @@ libbsp_a_LIBADD = \
|
|||||||
../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/delay.rel \
|
../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/delay.rel \
|
||||||
../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/score.rel
|
../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/score.rel
|
||||||
|
|
||||||
EXTRA_DIST += times
|
EXTRA_DIST = times
|
||||||
|
|
||||||
include $(srcdir)/preinstall.am
|
include $(srcdir)/preinstall.am
|
||||||
include $(top_srcdir)/../../../../automake/local.am
|
include $(top_srcdir)/../../../../automake/local.am
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2008-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
|
* Makefile.am: Eliminate bsp.am. Build startup files as side-effect
|
||||||
|
of building libbspstart.a, using automake-rules.
|
||||||
|
|
||||||
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* Makefile.am: Eliminate *_SOURCES.
|
* Makefile.am: Eliminate *_SOURCES.
|
||||||
|
|||||||
@@ -5,7 +5,6 @@
|
|||||||
ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../bsp.am
|
|
||||||
|
|
||||||
include_bspdir = $(includedir)/bsp
|
include_bspdir = $(includedir)/bsp
|
||||||
|
|
||||||
@@ -20,15 +19,15 @@ DISTCLEANFILES = include/bspopts.h
|
|||||||
|
|
||||||
include_HEADERS += include/coverhd.h
|
include_HEADERS += include/coverhd.h
|
||||||
|
|
||||||
EXTRA_DIST = start/start.S start/start.ram start/start.rom
|
EXTRA_DIST = start/start.ram start/start.rom
|
||||||
start.$(OBJEXT): start/start.S
|
noinst_LIBRARIES = libbspstart.a
|
||||||
$(CPPASCOMPILE) -o $@ -c $<
|
libbspstart_a_SOURCES = start/start.S
|
||||||
project_lib_DATA = start.$(OBJEXT)
|
project_lib_DATA = start.$(OBJEXT)
|
||||||
|
|
||||||
dist_project_lib_DATA += startup/linkcmds startup/linkcmds.ram \
|
dist_project_lib_DATA += startup/linkcmds startup/linkcmds.ram \
|
||||||
startup/linkcmds.rom
|
startup/linkcmds.rom
|
||||||
|
|
||||||
noinst_LIBRARIES = libbsp.a
|
noinst_LIBRARIES += libbsp.a
|
||||||
libbsp_a_SOURCES =
|
libbsp_a_SOURCES =
|
||||||
|
|
||||||
SHGEN = $(PROJECT_TOPdir)/tools/cpu/sh/shgen
|
SHGEN = $(PROJECT_TOPdir)/tools/cpu/sh/shgen
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2008-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
|
* Makefile.am: Eliminate bsp.am. Build startup files as side-effect
|
||||||
|
of building libbspstart.a, using automake-rules.
|
||||||
|
|
||||||
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* Makefile.am: Eliminate *_SOURCES.
|
* Makefile.am: Eliminate *_SOURCES.
|
||||||
|
|||||||
@@ -5,7 +5,6 @@
|
|||||||
ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../bsp.am
|
|
||||||
|
|
||||||
include_bspdir = $(includedir)/bsp
|
include_bspdir = $(includedir)/bsp
|
||||||
|
|
||||||
@@ -21,16 +20,14 @@ DISTCLEANFILES = include/bspopts.h
|
|||||||
include_HEADERS += include/sdram.h
|
include_HEADERS += include/sdram.h
|
||||||
include_HEADERS += include/coverhd.h
|
include_HEADERS += include/coverhd.h
|
||||||
|
|
||||||
EXTRA_DIST = start/start.S
|
noinst_LIBRARIES = libbspstart.a
|
||||||
start.$(OBJEXT): start/start.S
|
libbspstart_a_SOURCES = start/start.S
|
||||||
$(CPPASCOMPILE) -o $@ -c $<
|
|
||||||
|
|
||||||
project_lib_DATA = start.$(OBJEXT)
|
project_lib_DATA = start.$(OBJEXT)
|
||||||
|
|
||||||
dist_project_lib_DATA += startup/linkcmds startup/linkcmds.rom \
|
dist_project_lib_DATA += startup/linkcmds startup/linkcmds.rom \
|
||||||
startup/linkcmds.rom2ram
|
startup/linkcmds.rom2ram
|
||||||
|
|
||||||
noinst_LIBRARIES = libbsp.a
|
noinst_LIBRARIES += libbsp.a
|
||||||
libbsp_a_SOURCES =
|
libbsp_a_SOURCES =
|
||||||
|
|
||||||
# startup
|
# startup
|
||||||
@@ -50,7 +47,7 @@ libbsp_a_LIBADD = \
|
|||||||
../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/sci.rel \
|
../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/sci.rel \
|
||||||
../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/score.rel
|
../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/score.rel
|
||||||
|
|
||||||
EXTRA_DIST += times
|
EXTRA_DIST = times
|
||||||
|
|
||||||
include $(srcdir)/preinstall.am
|
include $(srcdir)/preinstall.am
|
||||||
include $(top_srcdir)/../../../../automake/local.am
|
include $(top_srcdir)/../../../../automake/local.am
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2008-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
|
* Makefile.am: Eliminate bsp.am. Build startup files as side-effect
|
||||||
|
of building libbspstart.a, using automake-rules.
|
||||||
|
|
||||||
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* Makefile.am: Eliminate *_SOURCES.
|
* Makefile.am: Eliminate *_SOURCES.
|
||||||
|
|||||||
@@ -5,7 +5,6 @@
|
|||||||
ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../bsp.am
|
|
||||||
|
|
||||||
include_bspdir = $(includedir)/bsp
|
include_bspdir = $(includedir)/bsp
|
||||||
|
|
||||||
@@ -21,14 +20,13 @@ DISTCLEANFILES = include/bspopts.h
|
|||||||
include_HEADERS += include/gdbsci.h
|
include_HEADERS += include/gdbsci.h
|
||||||
nodist_include_HEADERS += ../../shared/include/coverhd.h
|
nodist_include_HEADERS += ../../shared/include/coverhd.h
|
||||||
|
|
||||||
EXTRA_DIST = start/start.S
|
noinst_LIBRARIES = libbspstart.a
|
||||||
start.$(OBJEXT): start/start.S
|
libbspstart_a_SOURCES = start/start.S
|
||||||
$(CPPASCOMPILE) -o $@ -c $<
|
|
||||||
project_lib_DATA = start.$(OBJEXT)
|
project_lib_DATA = start.$(OBJEXT)
|
||||||
|
|
||||||
dist_project_lib_DATA += startup/linkcmds startup/linkcmds.sim
|
dist_project_lib_DATA += startup/linkcmds startup/linkcmds.sim
|
||||||
|
|
||||||
noinst_LIBRARIES = libbsp.a
|
noinst_LIBRARIES += libbsp.a
|
||||||
libbsp_a_SOURCES =
|
libbsp_a_SOURCES =
|
||||||
|
|
||||||
SHGEN = $(PROJECT_TOPdir)/tools/cpu/sh/shgen
|
SHGEN = $(PROJECT_TOPdir)/tools/cpu/sh/shgen
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2008-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
|
* Makefile.am: Eliminate bsp.am. Build startup files as side-effect
|
||||||
|
of building libbspstart.a, using automake-rules.
|
||||||
|
|
||||||
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* Makefile.am: Eliminate *_SOURCES.
|
* Makefile.am: Eliminate *_SOURCES.
|
||||||
|
|||||||
@@ -5,7 +5,6 @@
|
|||||||
ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../bsp.am
|
|
||||||
|
|
||||||
include_bspdir = $(includedir)/bsp
|
include_bspdir = $(includedir)/bsp
|
||||||
|
|
||||||
@@ -27,15 +26,14 @@ include_HEADERS += include/syscall.h
|
|||||||
include_HEADERS += include/ramdisk.h
|
include_HEADERS += include/ramdisk.h
|
||||||
include_HEADERS += include/coverhd.h
|
include_HEADERS += include/coverhd.h
|
||||||
|
|
||||||
EXTRA_DIST = start/start.S
|
noinst_LIBRARIES = libbspstart.a
|
||||||
start.$(OBJEXT): start/start.S
|
libbspstart_a_SOURCES = start/start.S
|
||||||
$(CPPASCOMPILE) -o $@ -c $<
|
|
||||||
project_lib_DATA = start.$(OBJEXT)
|
project_lib_DATA = start.$(OBJEXT)
|
||||||
|
|
||||||
dist_project_lib_DATA += startup/linkcmds startup/linkcmds-le \
|
dist_project_lib_DATA += startup/linkcmds startup/linkcmds-le \
|
||||||
startup/linkcmds-le.coff
|
startup/linkcmds-le.coff
|
||||||
|
|
||||||
noinst_LIBRARIES = libbsp.a
|
noinst_LIBRARIES += libbsp.a
|
||||||
libbsp_a_SOURCES =
|
libbsp_a_SOURCES =
|
||||||
|
|
||||||
# startup
|
# startup
|
||||||
|
|||||||
Reference in New Issue
Block a user