aboutsummaryrefslogtreecommitdiff
path: root/bfd/Makefile.in
diff options
context:
space:
mode:
authorDavid MacKenzie <djm@cygnus>1993-08-07 22:38:22 +0000
committerDavid MacKenzie <djm@cygnus>1993-08-07 22:38:22 +0000
commit5f9a2245d8cbdac6cf6f3da81099e68d224e6256 (patch)
tree88a74c1fc3f8f3724027acea3597defa5780d684 /bfd/Makefile.in
parent379dd9658225106674625254fa36004958819b47 (diff)
downloadgdb-5f9a2245d8cbdac6cf6f3da81099e68d224e6256.zip
gdb-5f9a2245d8cbdac6cf6f3da81099e68d224e6256.tar.gz
gdb-5f9a2245d8cbdac6cf6f3da81099e68d224e6256.tar.bz2
make target selection fully configurable
Diffstat (limited to 'bfd/Makefile.in')
-rw-r--r--bfd/Makefile.in12
1 files changed, 4 insertions, 8 deletions
diff --git a/bfd/Makefile.in b/bfd/Makefile.in
index 0f417f6a..34546bb 100644
--- a/bfd/Makefile.in
+++ b/bfd/Makefile.in
@@ -107,9 +107,6 @@ OPTIONAL_BACKENDS = trad-core.o sco-core.o aix386-core.o hpux-core.o
# These are defined by configure.in:
# WORDSIZE=32
# BFD_BACKENDS = $(BFD32_BACKENDS)
-# Change this (to MINIMIZE=1) to save space in executables.
-# Currently, all this does is control the target_vector in targets.c.
-# MINIMIZE=0
all:
@@ -177,9 +174,8 @@ install-info: force
# Various kinds of .o files to put in libbfd.a:
# BFD_LIBS Generic routines, always needed.
-# BFD_BACKENDS Routines the target needs if it is the configured target.
-# BFD_MACHINES Architecture-specific routines in cpu-*.o.
-# Always set to ALL_MACHINES for now.
+# BFD_BACKENDS Routines the configured targets need.
+# BFD_MACHINES Architecture-specific routines the configured targets need.
# HDEPFILES Routines the host needs, regardless of target.
# TDEPFILES Routines the target needs, regardless of host.
OFILES = $(BFD_LIBS) $(BFD_BACKENDS) $(BFD_MACHINES) $(HDEPFILES) $(TDEPFILES)
@@ -206,10 +202,10 @@ $(TARGETLIB): $(OFILES) ofiles
targets.o: targets.c Makefile
- $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) -DMINIMIZE=$(MINIMIZE) $(TDEFAULTS) $<
+ $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $(TDEFAULTS) $<
archures.o: archures.c Makefile
- $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) -DMINIMIZE=$(MINIMIZE) $(TDEFAULTS) $<
+ $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $(TDEFAULTS) $<
subdir_do: force
@for i in $(DODIRS); do \