Creating Makefile stubs in preparation for mips three-stage.
This commit is contained in:
parent
ce9dc65af7
commit
f6b67e4cdd
|
@ -219,15 +219,19 @@ OBJS = \
|
|||
xmalloc.o \
|
||||
xrealloc.o
|
||||
|
||||
#### host, target, and site specific Makefile frags come in here.
|
||||
|
||||
# Definition of `all' is here so that new rules inserted by sed
|
||||
# do not specify the default target.
|
||||
# The real definition is under `all.internal'.
|
||||
|
||||
all: $(ALL)
|
||||
|
||||
# sed inserts variable overrides after the following line.
|
||||
####
|
||||
|
||||
fake-as: force
|
||||
- rm -f ./as.new
|
||||
cp /bin/as ./as.new
|
||||
touch fake-as
|
||||
|
||||
# Now figure out from those variables how to compile and link.
|
||||
|
||||
# This is the variable actually used when we compile.
|
||||
|
@ -244,7 +248,8 @@ HOST_LIBDEPS= $(HOST_PREFIX)$(OBSTACK) $(HOST_PREFIX)$(ALLOCA) $(HOST_PREFIX)$(M
|
|||
|
||||
# How to link with both our special library facilities
|
||||
# and the system's installed libraries.
|
||||
LIBS = $(CLIB) $(unsubdir)/../libiberty`if [ -d $(unsubdir)/libiberty.$(target) ] ; then echo .$(target) ; fi`$(subdir)/libiberty.a
|
||||
|
||||
LIBS = $(LOCAL_LOADLIBES) $(CLIB) $(srcdir)/../libiberty`if [ -d $(srcdir)/libiberty.$(target) ] ; then echo .$(target) ; fi`$(subdir)/libiberty.a
|
||||
|
||||
# Likewise, for use in the tools that must run on this machine
|
||||
# even if we are cross-building GCC.
|
||||
|
|
Loading…
Reference in New Issue