mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
2003-12-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* start/Makefile.am: Misc cleanups and fixes. * startup/Makefile.am: Misc cleanups and fixes. * wrapup/Makefile.am: Misc cleanups and fixes.
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
2003-12-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* start/Makefile.am: Misc cleanups and fixes.
|
||||||
|
* startup/Makefile.am: Misc cleanups and fixes.
|
||||||
|
* wrapup/Makefile.am: Misc cleanups and fixes.
|
||||||
|
|
||||||
2003-12-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2003-12-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* Makefile.am: Add preinstallation dirstamp support.
|
* Makefile.am: Add preinstallation dirstamp support.
|
||||||
|
|||||||
@@ -9,22 +9,20 @@ OBJS = $(S_O_FILES)
|
|||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../../../automake/lib.am
|
include $(top_srcdir)/../../../../automake/lib.am
|
||||||
|
include $(top_srcdir)/../../bspstart.am
|
||||||
|
|
||||||
#
|
#
|
||||||
# (OPTIONAL) Add local stuff here using +=
|
# (OPTIONAL) Add local stuff here using +=
|
||||||
#
|
#
|
||||||
|
|
||||||
install-data-local: $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
|
project_lib_DATA = $(ARCH)/start$(LIB_VARIANT).$(OBJEXT)
|
||||||
@$(mkinstalldirs) $(DESTDIR)$(bsplibdir)
|
|
||||||
$(INSTALL_DATA) $< $(DESTDIR)$(bsplibdir)
|
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start.$(OBJEXT)
|
all-local: $(TMPINSTALL_FILES)
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
|
|
||||||
|
|
||||||
all-local: $(OBJS) $(TMPINSTALL_FILES)
|
|
||||||
|
|
||||||
EXTRA_DIST = start.S
|
EXTRA_DIST = start.S
|
||||||
|
|
||||||
|
${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start$(LIB_VARIANT).$(OBJEXT) ${PROJECT_RELEASE}/lib/$(dirstamp)
|
||||||
|
$(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT)
|
||||||
|
TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT)
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/local.am
|
include $(top_srcdir)/../../../../automake/local.am
|
||||||
|
|||||||
@@ -22,17 +22,14 @@ include $(top_srcdir)/../../../../automake/lib.am
|
|||||||
$(PGM): $(OBJS)
|
$(PGM): $(OBJS)
|
||||||
$(make-rel)
|
$(make-rel)
|
||||||
|
|
||||||
bsplib_DATA = linkcmds
|
project_lib_DATA = linkcmds
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
|
all-local: $(PGM) $(TMPINSTALL_FILES)
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
|
|
||||||
|
|
||||||
all-local: $(OBJS) $(PGM) $(TMPINSTALL_FILES)
|
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
|
||||||
|
|
||||||
EXTRA_DIST = bspclean.c bspstart.c genpvec.c linkcmds setvec.c vmeintr.c
|
EXTRA_DIST = bspclean.c bspstart.c genpvec.c linkcmds setvec.c vmeintr.c
|
||||||
|
|
||||||
|
${PROJECT_RELEASE}/lib/linkcmds: linkcmds ${PROJECT_RELEASE}/lib/$(dirstamp)
|
||||||
|
$(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/linkcmds
|
||||||
|
TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/linkcmds
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/local.am
|
include $(top_srcdir)/../../../../automake/local.am
|
||||||
|
|||||||
@@ -11,9 +11,8 @@ endif
|
|||||||
BSP_PIECES = startup clock console scv64 timer tod $(NETWORKING)
|
BSP_PIECES = startup clock console scv64 timer tod $(NETWORKING)
|
||||||
|
|
||||||
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
||||||
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard \
|
OBJS = $(foreach piece, $(BSP_PIECES), ../$(piece)/$(ARCH)/*.$(OBJEXT)) \
|
||||||
../$(piece)/$(ARCH)/*.$(OBJEXT))) ../@exceptions@/$(ARCH)/rtems-cpu.rel \
|
../@exceptions@/$(ARCH)/rtems-cpu.rel $(wildcard \
|
||||||
$(wildcard \
|
|
||||||
../../../../libcpu/$(RTEMS_CPU)/shared/*/$(ARCH)/*.$(OBJEXT))
|
../../../../libcpu/$(RTEMS_CPU)/shared/*/$(ARCH)/*.$(OBJEXT))
|
||||||
LIB = $(ARCH)/libbsp.a
|
LIB = $(ARCH)/libbsp.a
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,9 @@
|
|||||||
|
2003-12-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* start/Makefile.am: Misc cleanups and fixes.
|
||||||
|
* startup/Makefile.am: Misc cleanups and fixes.
|
||||||
|
* wrapup/Makefile.am: Misc cleanups and fixes.
|
||||||
|
|
||||||
2003-12-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2003-12-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* Makefile.am: Add preinstallation dirstamp support.
|
* Makefile.am: Add preinstallation dirstamp support.
|
||||||
|
|||||||
@@ -9,24 +9,20 @@ OBJS = $(S_O_FILES)
|
|||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../../../automake/lib.am
|
include $(top_srcdir)/../../../../automake/lib.am
|
||||||
|
include $(top_srcdir)/../../bspstart.am
|
||||||
|
|
||||||
#
|
#
|
||||||
# (OPTIONAL) Add local stuff here using +=
|
# (OPTIONAL) Add local stuff here using +=
|
||||||
#
|
#
|
||||||
|
|
||||||
install-data-local: $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
|
project_lib_DATA = $(ARCH)/start$(LIB_VARIANT).$(OBJEXT)
|
||||||
@$(mkinstalldirs) $(DESTDIR)$(bsplibdir)
|
|
||||||
$(INSTALL_DATA) $< $(DESTDIR)$(bsplibdir)
|
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start.$(OBJEXT)
|
all-local: $(TMPINSTALL_FILES)
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
|
|
||||||
|
|
||||||
all-local: $(OBJS) $(ARCH)/start.$(OBJEXT) $(TMPINSTALL_FILES)
|
|
||||||
|
|
||||||
.PRECIOUS: $(ARCH)/start.$(OBJEXT)
|
|
||||||
|
|
||||||
EXTRA_DIST = start.S
|
EXTRA_DIST = start.S
|
||||||
|
|
||||||
|
${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start$(LIB_VARIANT).$(OBJEXT) ${PROJECT_RELEASE}/lib/$(dirstamp)
|
||||||
|
$(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT)
|
||||||
|
TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT)
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/local.am
|
include $(top_srcdir)/../../../../automake/local.am
|
||||||
|
|||||||
@@ -22,18 +22,16 @@ include $(top_srcdir)/../../../../automake/lib.am
|
|||||||
$(PGM): $(OBJS)
|
$(PGM): $(OBJS)
|
||||||
$(make-rel)
|
$(make-rel)
|
||||||
|
|
||||||
bsplib_DATA = linkcmds
|
project_lib_DATA = linkcmds
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
|
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
|
|
||||||
|
|
||||||
all-local: $(OBJS) $(PGM) $(TMPINSTALL_FILES)
|
all-local: $(PGM) $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
|
||||||
|
|
||||||
EXTRA_DIST = bspstart.c linkcmds
|
EXTRA_DIST = bspstart.c linkcmds
|
||||||
|
|
||||||
|
${PROJECT_RELEASE}/lib/linkcmds: linkcmds ${PROJECT_RELEASE}/lib/$(dirstamp)
|
||||||
|
$(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/linkcmds
|
||||||
|
TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/linkcmds
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/local.am
|
include $(top_srcdir)/../../../../automake/local.am
|
||||||
|
|||||||
@@ -13,9 +13,8 @@ BSP_PIECES = clock irq startup start canbus vectors console $(NETWORKING)
|
|||||||
# mpc860/vectors
|
# mpc860/vectors
|
||||||
|
|
||||||
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
||||||
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard \
|
OBJS = $(foreach piece, $(BSP_PIECES), ../$(piece)/$(ARCH)/*.$(OBJEXT)) \
|
||||||
../$(piece)/$(ARCH)/*.$(OBJEXT))) $(wildcard \
|
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/*/$(ARCH)/*.$(OBJEXT)) \
|
||||||
../../../../libcpu/$(RTEMS_CPU)/shared/*/$(ARCH)/*.$(OBJEXT)) \
|
|
||||||
../@exceptions@/$(ARCH)/rtems-cpu.rel $(wildcard \
|
../@exceptions@/$(ARCH)/rtems-cpu.rel $(wildcard \
|
||||||
../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/*/$(ARCH)/*.$(OBJEXT))
|
../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/*/$(ARCH)/*.$(OBJEXT))
|
||||||
LIB = $(ARCH)/libbsp.a
|
LIB = $(ARCH)/libbsp.a
|
||||||
|
|||||||
@@ -1,3 +1,9 @@
|
|||||||
|
2003-12-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* start/Makefile.am: Misc cleanups and fixes.
|
||||||
|
* startup/Makefile.am: Misc cleanups and fixes.
|
||||||
|
* wrapup/Makefile.am: Misc cleanups and fixes.
|
||||||
|
|
||||||
2003-12-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2003-12-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* Makefile.am: Add preinstallation dirstamp support.
|
* Makefile.am: Add preinstallation dirstamp support.
|
||||||
|
|||||||
@@ -9,24 +9,20 @@ OBJS = $(S_O_FILES)
|
|||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../../../automake/lib.am
|
include $(top_srcdir)/../../../../automake/lib.am
|
||||||
|
include $(top_srcdir)/../../bspstart.am
|
||||||
|
|
||||||
#
|
#
|
||||||
# (OPTIONAL) Add local stuff here using +=
|
# (OPTIONAL) Add local stuff here using +=
|
||||||
#
|
#
|
||||||
|
|
||||||
install-data-local: $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
|
project_lib_DATA = $(ARCH)/start$(LIB_VARIANT).$(OBJEXT)
|
||||||
@$(mkinstalldirs) $(DESTDIR)$(bsplibdir)
|
|
||||||
$(INSTALL_DATA) $< $(DESTDIR)$(bsplibdir)
|
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start.$(OBJEXT)
|
all-local: $(TMPINSTALL_FILES)
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
|
|
||||||
|
|
||||||
all-local: $(OBJS) $(ARCH)/start.$(OBJEXT) $(TMPINSTALL_FILES)
|
|
||||||
|
|
||||||
.PRECIOUS: $(ARCH)/start.$(OBJEXT)
|
|
||||||
|
|
||||||
EXTRA_DIST = start.S
|
EXTRA_DIST = start.S
|
||||||
|
|
||||||
|
${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start$(LIB_VARIANT).$(OBJEXT) ${PROJECT_RELEASE}/lib/$(dirstamp)
|
||||||
|
$(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT)
|
||||||
|
TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT)
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/local.am
|
include $(top_srcdir)/../../../../automake/local.am
|
||||||
|
|||||||
@@ -31,18 +31,15 @@ STARTUP_C_PIECES = bspstart bspclean sbrk setvec spurious genpvec swap main \
|
|||||||
$(PGM): $(OBJS)
|
$(PGM): $(OBJS)
|
||||||
$(make-rel)
|
$(make-rel)
|
||||||
|
|
||||||
bsplib_DATA = linkcmds
|
project_lib_DATA = linkcmds
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
|
all-local: $(PGM) $(TMPINSTALL_FILES)
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
|
|
||||||
|
|
||||||
all-local: $(OBJS) $(PGM) $(TMPINSTALL_FILES)
|
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
|
||||||
|
|
||||||
EXTRA_DIST = bspclean.c bspstart.c bsptrap.S genpvec.c linkcmds \
|
EXTRA_DIST = bspclean.c bspstart.c bsptrap.S genpvec.c linkcmds \
|
||||||
rtems-ctor.cc setvec.c spurious.c swap.c
|
rtems-ctor.cc setvec.c spurious.c swap.c
|
||||||
|
|
||||||
|
${PROJECT_RELEASE}/lib/linkcmds: linkcmds ${PROJECT_RELEASE}/lib/$(dirstamp)
|
||||||
|
$(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/linkcmds
|
||||||
|
TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/linkcmds
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/local.am
|
include $(top_srcdir)/../../../../automake/local.am
|
||||||
|
|||||||
@@ -12,8 +12,8 @@ BSP_PIECES = startup clock console timer tod $(NETWORK) nvram universe pci \
|
|||||||
# pieces to pick up out of libcpu/$(RTEMS_CPU)
|
# pieces to pick up out of libcpu/$(RTEMS_CPU)
|
||||||
|
|
||||||
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
||||||
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard \
|
OBJS = $(foreach piece, $(BSP_PIECES), ../$(piece)/$(ARCH)/*.$(OBJEXT)) \
|
||||||
../$(piece)/$(ARCH)/*.$(OBJEXT))) ../@exceptions@/$(ARCH)/rtems-cpu.rel
|
../@exceptions@/$(ARCH)/rtems-cpu.rel
|
||||||
LIB = $(ARCH)/libbsp.a
|
LIB = $(ARCH)/libbsp.a
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
|
|||||||
@@ -1,3 +1,9 @@
|
|||||||
|
2003-12-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* start/Makefile.am: Misc cleanups and fixes.
|
||||||
|
* startup/Makefile.am: Misc cleanups and fixes.
|
||||||
|
* wrapup/Makefile.am: Misc cleanups and fixes.
|
||||||
|
|
||||||
2003-12-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2003-12-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* Makefile.am: Add preinstallation dirstamp support.
|
* Makefile.am: Add preinstallation dirstamp support.
|
||||||
|
|||||||
@@ -9,22 +9,20 @@ OBJS = $(S_O_FILES)
|
|||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../../../automake/lib.am
|
include $(top_srcdir)/../../../../automake/lib.am
|
||||||
|
include $(top_srcdir)/../../bspstart.am
|
||||||
|
|
||||||
#
|
#
|
||||||
# (OPTIONAL) Add local stuff here using +=
|
# (OPTIONAL) Add local stuff here using +=
|
||||||
#
|
#
|
||||||
|
|
||||||
install-data-local: $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
|
project_lib_DATA = $(ARCH)/start$(LIB_VARIANT).$(OBJEXT)
|
||||||
@$(mkinstalldirs) $(DESTDIR)$(bsplibdir)
|
|
||||||
$(INSTALL_DATA) $< $(DESTDIR)$(bsplibdir)
|
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start.$(OBJEXT)
|
all-local: $(TMPINSTALL_FILES)
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
|
|
||||||
|
|
||||||
all-local: $(OBJS) $(TMPINSTALL_FILES)
|
|
||||||
|
|
||||||
EXTRA_DIST = start.S
|
EXTRA_DIST = start.S
|
||||||
|
|
||||||
|
${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start$(LIB_VARIANT).$(OBJEXT) ${PROJECT_RELEASE}/lib/$(dirstamp)
|
||||||
|
$(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT)
|
||||||
|
TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT)
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/local.am
|
include $(top_srcdir)/../../../../automake/local.am
|
||||||
|
|||||||
@@ -29,18 +29,15 @@ include $(top_srcdir)/../../../../automake/lib.am
|
|||||||
$(PGM): $(OBJS)
|
$(PGM): $(OBJS)
|
||||||
$(make-rel)
|
$(make-rel)
|
||||||
|
|
||||||
bsplib_DATA = linkcmds
|
project_lib_DATA = linkcmds
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
|
all-local: $(PGM) $(TMPINSTALL_FILES)
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
|
|
||||||
|
|
||||||
all-local: $(OBJS) $(PGM) $(TMPINSTALL_FILES)
|
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
|
||||||
|
|
||||||
EXTRA_DIST = FPGA.c Hwr_init.c bspclean.c bspstart.c genpvec.c linkcmds \
|
EXTRA_DIST = FPGA.c Hwr_init.c bspclean.c bspstart.c genpvec.c linkcmds \
|
||||||
setvec.c spurious.c vmeintr.c
|
setvec.c spurious.c vmeintr.c
|
||||||
|
|
||||||
|
${PROJECT_RELEASE}/lib/linkcmds: linkcmds ${PROJECT_RELEASE}/lib/$(dirstamp)
|
||||||
|
$(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/linkcmds
|
||||||
|
TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/linkcmds
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/local.am
|
include $(top_srcdir)/../../../../automake/local.am
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ BSP_PIECES = startup clock console timer tod vectors PCI_bus
|
|||||||
# pieces to pick up out of libcpu/$(RTEMS_CPU)
|
# pieces to pick up out of libcpu/$(RTEMS_CPU)
|
||||||
|
|
||||||
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
||||||
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard \
|
OBJS = $(foreach piece, $(BSP_PIECES), ../$(piece)/$(ARCH)/*.$(OBJEXT)) \
|
||||||
../$(piece)/$(ARCH)/*.$(OBJEXT))) ../@exceptions@/$(ARCH)/*.rel
|
../@exceptions@/$(ARCH)/*.rel
|
||||||
LIB = $(ARCH)/libbsp.a
|
LIB = $(ARCH)/libbsp.a
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
|
|||||||
Reference in New Issue
Block a user