* Makefile.in (FLAGS_TO_PASS): Pass down CC and CFLAGS.

This commit is contained in:
Ian Lance Taylor 1993-05-27 00:28:16 +00:00
parent a9377e86f8
commit 4447efa217
3 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Wed May 26 17:24:17 1993 Ian Lance Taylor (ian@cygnus.com)
* Makefile.in (FLAGS_TO_PASS): Pass down CC and CFLAGS.
Tue May 25 00:26:47 1993 Ken Raeburn (raeburn@cygnus.com)
* objdump.c (slurp_symtab): Print warning for bad symbol table.

View file

@ -143,6 +143,8 @@ OPCODES = $(OPCODEDIR)/libopcodes.a
RUNTEST = runtest
RUNTESTFLAGS =
FLAGS_TO_PASS = \
"CC=$(CC)" \
"CFLAGS=$(CFLAGS)" \
"RUNTEST=$(RUNTEST)" \
"RUNTESTFLAGS=$(RUNTESTFLAGS) \
SIZE=`if [ -f $$rootme/$(SIZE_PROG) ] ; then echo $$rootme/$(SIZE_PROG) ; else echo $(SIZE_PROG); fi` \

View file

@ -42,7 +42,9 @@ SUBDIRS=
RUNTEST = runtest
RUNTESTFLAGS =
FLAGS_TO_PASS =
FLAGS_TO_PASS = \
"CC=$(CC)" \
"CFLAGS=$(CFLAGS)"
#### host, target, and site specific Makefile frags come in here.