diff options
author | Daniel Jacobowitz <drow@false.org> | 2002-02-19 23:48:14 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2002-02-19 23:48:14 +0000 |
commit | 845630402f41380a6ecaaba5059f8e1ebcd97000 (patch) | |
tree | 807e1076ddcf7b8a09ce54a723ce192857543a37 /gdb/gdbserver/Makefile.in | |
parent | 7230504575b6a628f55b398e6030ec619c640c68 (diff) | |
download | gdb-845630402f41380a6ecaaba5059f8e1ebcd97000.zip gdb-845630402f41380a6ecaaba5059f8e1ebcd97000.tar.gz gdb-845630402f41380a6ecaaba5059f8e1ebcd97000.tar.bz2 |
2002-02-19 Daniel Jacobowitz <drow@mvista.com>
* gdbserver/README: Update documentation.
* gdbserver/configure.in: Update configury to match documentation.
* gdbserver/Makefile.in: Likewise.
* gdbserver/configure: Regenerated.
* gdbserver/aclocal.m4: New file, generated by aclocal.
* gdbserver/config.in: New file, generated by autoheader.
Diffstat (limited to 'gdb/gdbserver/Makefile.in')
-rw-r--r-- | gdb/gdbserver/Makefile.in | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/gdb/gdbserver/Makefile.in b/gdb/gdbserver/Makefile.in index 82ac030..f570da2 100644 --- a/gdb/gdbserver/Makefile.in +++ b/gdb/gdbserver/Makefile.in @@ -48,18 +48,7 @@ INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ -AR = ar -AR_FLAGS = qv -RANLIB = ranlib - -# If you are compiling with GCC, make sure that either 1) You use the -# -traditional flag, or 2) You have the fixed include files where GCC -# can reach them. Otherwise the ioctl calls in inflow.c -# will be incorrectly compiled. The "fixincludes" script in the gcc -# distribution will fix your include files up. -#CC=cc -#CC=gcc -traditional -GCC=gcc +CC = @CC@ # Directory containing source files. Don't clean up the spacing, # this exact string is matched for by the "configure" script. @@ -106,7 +95,8 @@ GLOBAL_CFLAGS = ${MT_CFLAGS} ${MH_CFLAGS} # CFLAGS is specifically reserved for setting from the command line # when running make. I.E. "make CFLAGS=-Wmissing-prototypes". -CFLAGS = -g +CFLAGS = @CFLAGS@ + # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros. INTERNAL_CFLAGS = ${CFLAGS} ${GLOBAL_CFLAGS} ${PROFILE_CFLAGS} \ ${INCLUDE_CFLAGS} ${BFD_CFLAGS} -DGDBSERVER |