mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 14:59:31 +08:00
fixed for objdir/subdirs
This commit is contained in:
@ -21,10 +21,10 @@
|
|||||||
# End of host and target-dependent makefile fragments
|
# End of host and target-dependent makefile fragments
|
||||||
|
|
||||||
# Destination directory of the software tree build
|
# Destination directory of the software tree build
|
||||||
destdir = /usr/local
|
ddestdir = /usr/local
|
||||||
|
|
||||||
# Place to install binaries in the destination tree.
|
# Place to install binaries in the destination tree.
|
||||||
bindir=$(destdir)/bin
|
bindir=$(ddestdir)/bin
|
||||||
|
|
||||||
# System V: If you compile gdb with a compiler which uses the coff
|
# System V: If you compile gdb with a compiler which uses the coff
|
||||||
# encapsulation feature (this is a function of the compiler used, NOT
|
# encapsulation feature (this is a function of the compiler used, NOT
|
||||||
@ -87,13 +87,13 @@ INCLUDE_DEP = $$(INCLUDE_DIR)
|
|||||||
# (When we want the binary library built from it, we use ${BFD_DIR}${subdir}.)
|
# (When we want the binary library built from it, we use ${BFD_DIR}${subdir}.)
|
||||||
BFD_DIR = ${srcdir}/../bfd
|
BFD_DIR = ${srcdir}/../bfd
|
||||||
BFD_DEP = $$(BFD_DIR)
|
BFD_DEP = $$(BFD_DIR)
|
||||||
BFD_LIB = $(BFD_DIR)${subdir}/libbfd.a
|
BFD_LIB = $(unsubdir)/../bfd${subdir}/libbfd.a
|
||||||
|
|
||||||
# Where is the source dir for the READLINE library? Traditionally in .. or .
|
# Where is the source dir for the READLINE library? Traditionally in .. or .
|
||||||
# (For the binary library built from it, we use ${READLINE_DIR}${subdir}.)
|
# (For the binary library built from it, we use ${READLINE_DIR}${subdir}.)
|
||||||
READLINE_DIR = ${srcdir}/../readline
|
READLINE_DIR = ${srcdir}/../readline
|
||||||
READLINE_DEP = $$(READLINE_DIR)
|
READLINE_DEP = $$(READLINE_DIR)
|
||||||
RL_LIB = $(READLINE_DIR)${subdir}/libreadline.a
|
RL_LIB = $(unsubdir)/../readline${subdir}/libreadline.a
|
||||||
|
|
||||||
# All the includes used for CFLAGS and for lint.
|
# All the includes used for CFLAGS and for lint.
|
||||||
# -I. for config files.
|
# -I. for config files.
|
||||||
@ -112,7 +112,7 @@ LDFLAGS = $(CFLAGS)
|
|||||||
|
|
||||||
# Where is the "-liberty" library, containing getopt and obstack?
|
# Where is the "-liberty" library, containing getopt and obstack?
|
||||||
LIBIBERTY_DIR = ${srcdir}/../libiberty
|
LIBIBERTY_DIR = ${srcdir}/../libiberty
|
||||||
LIBIBERTY = ${LIBIBERTY_DIR}${subdir}/libiberty.a
|
LIBIBERTY = $(unsubdir)/../libiberty${subdir}/libiberty.a
|
||||||
|
|
||||||
# Flags that describe where you can find the termcap library.
|
# Flags that describe where you can find the termcap library.
|
||||||
# You may need to make other arrangements for USG.
|
# You may need to make other arrangements for USG.
|
||||||
|
Reference in New Issue
Block a user