[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: eth_comm
Attached is a replacement for eth_comm/start/Makefile.in.
Leon Pollak wrote:
>
> Hello,
> I tried to install the last full rtems-19991203 for PPC psim and
> eth_com BSPs. The psim installation passed O'K, while the eth_comm failed as
> following (second run):
> ....
> Making all in stubdr
> make[5]: Entering directory `/usr/local/RTEMS/rtems-19991203-src/my-build/powerpc-rtems/c/eth_comm/tests/support/stubdr'
> make[5]: Nothing to be done for `all'.
> make[5]: Leaving directory `/usr/local/RTEMS/rtems-19991203-src/my-build/powerpc-rtems/c/eth_comm/tests/support/stubdr'
> Making all in wrapup
> make[5]: Entering directory `/usr/local/RTEMS/rtems-19991203-src/my-build/powerpc-rtems/c/eth_comm/tests/support/wrapup'
> make[5]: Nothing to be done for `all'.
> make[5]: Leaving directory `/usr/local/RTEMS/rtems-19991203-src/my-build/powerpc-rtems/c/eth_comm/tests/support/wrapup'
> make[5]: Entering directory `/usr/local/RTEMS/rtems-19991203-src/my-build/powerpc-rtems/c/eth_comm/tests/support'
> make[5]: Nothing to be done for `all-am'.
> make[5]: Leaving directory `/usr/local/RTEMS/rtems-19991203-src/my-build/powerpc-rtems/c/eth_comm/tests/support'
> make[4]: Leaving directory `/usr/local/RTEMS/rtems-19991203-src/my-build/powerpc-rtems/c/eth_comm/tests/support'
> Making all in samples
> make[4]: Entering directory `/usr/local/RTEMS/rtems-19991203-src/my-build/powerpc-rtems/c/eth_comm/tests/samples'
> Making all in hello
> make[5]: Entering directory `/usr/local/RTEMS/rtems-19991203-src/my-build/powerpc-rtems/c/eth_comm/tests/samples/hello'
> make[5]: *** No rule to make target `../../../../../../eth_comm/lib/start.o', needed by `o-optimize/hello.exe'. Stop.
> make[5]: Leaving directory `/usr/local/RTEMS/rtems-19991203-src/my-build/powerpc-rtems/c/eth_comm/tests/samples/hello'
> make[4]: *** [all-recursive] Error 1
> make[4]: Leaving directory `/usr/local/RTEMS/rtems-19991203-src/my-build/powerpc-rtems/c/eth_comm/tests/samples'
> make[3]: *** [all-recursive] Error 1
> make[3]: Leaving directory `/usr/local/RTEMS/rtems-19991203-src/my-build/powerpc-rtems/c/eth_comm/tests'
> make[2]: *** [all-recursive] Error 1
> make[2]: Leaving directory `/usr/local/RTEMS/rtems-19991203-src/my-build/powerpc-rtems/c/eth_comm'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory `/usr/local/RTEMS/rtems-19991203-src/my-build/powerpc-rtems/c'
> make: *** [all-recursive] Error 1
>
> I am sorry to be not able to follow the Makefiles chain to fix the
> error.
>
> Dr.Leon Pollak
> leonp@plris.com
--
Joel Sherrill, Ph.D. Director of Research & Development
joel@OARcorp.com On-Line Applications Research
Ask me about RTEMS: a free RTOS Huntsville AL 35805
Support Available (256) 722-9985
#
# $Id: Makefile.in,v 1.10 1999/11/22 14:27:03 joel Exp $
#
@SET_MAKE@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
top_builddir = ../../..
subdir = powerpc/eth_comm/start
RTEMS_ROOT = @RTEMS_ROOT@
PROJECT_ROOT = @PROJECT_ROOT@
VPATH = @srcdir@
PGM = ${ARCH}/start.o
# C source names, if any, go here -- minus the .c
C_PIECES =
C_FILES = $(C_PIECES:%=%.c)
C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
H_FILES =
# Assembly source names, if any, go here -- minus the .S
S_PIECES = start
S_FILES = $(S_PIECES:%=%.S)
S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
SRCS = $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
OBJS = $(C_O_FILES) $(CC_O_FILES) $(S_O_FILES)
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(RTEMS_ROOT)/make/leaf.cfg
INSTALL_CHANGE = @INSTALL_CHANGE@
#
# (OPTIONAL) Add local stuff here using +=
#
DEFINES +=
CPPFLAGS +=
CFLAGS +=
LD_PATHS +=
LD_LIBS +=
LDFLAGS +=
#
# Add your list of files to delete here. The config files
# already know how to delete some stuff, so you may want
# to just run 'make clean' first to see what gets missed.
# 'make clobber' already includes 'make clean'
#
CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS +=
all: ${ARCH} $(SRCS) $(OBJS) $(PGM)
$(INSTALL_VARIANT) -m 755 ${PGM} $(PROJECT_RELEASE)/lib
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status