summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/i386ex/startup/Makefile.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-04-16 18:15:08 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-04-16 18:15:08 +0000
commit98d051fffe48b30c31c78baea7c92f3293eda848 (patch)
tree94211c0274c07a0c19a74855de649b9bd7636e1d /c/src/lib/libbsp/i386/i386ex/startup/Makefile.in
parentCorrected to reflect new way of doing mips constructors. (diff)
downloadrtems-98d051fffe48b30c31c78baea7c92f3293eda848.tar.bz2
Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:
1) ./c/src/lib/libbsp/i386/i386ex/startup/Makefile.in > preinstall: > $(INSTALL_CHANGE) ${IMPORT_SRC} . > > # ${CP} ${IMPORT_SRC} . > > > This fragment is broken, because IMPORT_SRC is always empty. IMO, the fix would be to remove this fragment or to replace it with test -z "${IMPORT_SRC}" || cp ${IMPORT_SRC} . if an external shell variable IMPORT_SRC shall be supported by this Makefile, which IMO should not be done.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/i386/i386ex/startup/Makefile.in7
1 files changed, 1 insertions, 6 deletions
diff --git a/c/src/lib/libbsp/i386/i386ex/startup/Makefile.in b/c/src/lib/libbsp/i386/i386ex/startup/Makefile.in
index 6e4122ce99..6f379b9b9c 100644
--- a/c/src/lib/libbsp/i386/i386ex/startup/Makefile.in
+++ b/c/src/lib/libbsp/i386/i386ex/startup/Makefile.in
@@ -61,14 +61,9 @@ LDFLAGS +=
CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS +=
-preinstall:
- $(INSTALL_CHANGE) ${IMPORT_SRC} .
-
-# ${CP} ${IMPORT_SRC} .
-
${PGM}: ${SRCS} ${OBJS}
$(make-rel)
-all: ${ARCH} preinstall $(SRCS) $(PGM)
+all: ${ARCH} $(SRCS) $(PGM)
$(INSTALL_CHANGE) $(srcdir)/linkcmds ${PROJECT_RELEASE}/lib
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile