diff options
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 6278428..bd47624 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -135,7 +135,10 @@ MINUS_G=-g GLOBAL_CFLAGS = ${MINUS_G} ${TM_CFLAGS} ${XM_CFLAGS} #PROFILE_CFLAGS = -pg -CFLAGS = ${GLOBAL_CFLAGS} ${PROFILE_CFLAGS} ${MALLOC_CFLAGS} ${INCLUDE_CFLAGS} +# CFLAGS is the aggregate of several individual *_CFLAGS macros. +# USER_CFLAGS is specifically reserved for setting from the command line +# when running make. I.E. "make USER_CFLAGS=-Wmissing-prototypes". +CFLAGS = ${GLOBAL_CFLAGS} ${PROFILE_CFLAGS} ${MALLOC_CFLAGS} ${INCLUDE_CFLAGS} ${USER_CFLAGS} # None of the things in CFLAGS will do any harm, and on some systems # (e.g. SunOS4) it is important to use the M_CFLAGS. LDFLAGS = $(CFLAGS) @@ -221,20 +224,23 @@ HFILES= breakpoint.h buildsym.h command.h defs.h environ.h \ expression.h frame.h gdbcmd.h gdbcore.h \ ieee-float.h inferior.h minimon.h \ signals.h signame.h symfile.h symtab.h \ - target.h terminal.h tm-68k.h tm-i960.h tm-sunos.h tm-svr4.h \ - xm-m68k.h xm-svr4.h language.h parser-defs.h value.h + target.h terminal.h tm-68k.h tm-i960.h tm-sunos.h tm-sysv4.h \ + xm-m68k.h xm-sysv4.h language.h parser-defs.h value.h # Header files for machine opcode tables. # when OPCODE_DIR changes to ../include, remove the whole $(OPCODES) # business, since they will be put into the GDB release files by somebody else. -OPCODE_DIR = -OPCODES = $(OPCODE_DIR)pn-opcode.h $(OPCODE_DIR)np1-opcode.h \ - $(OPCODE_DIR)sparc-opcode.h $(OPCODE_DIR)vax-opcode.h \ - $(OPCODE_DIR)m68k-opcode.h $(OPCODE_DIR)ns32k-opcode.h \ - $(OPCODE_DIR)convx-opcode.h $(OPCODE_DIR)pyr-opcode.h \ - $(OPCODE_DIR)mips-opcode.h $(OPCODE_DIR)am29k-opcode.h \ - $(OPCODE_DIR)arm-opcode.h $(OPCODE_DIR)m88k-opcode.h \ - $(OPCODE_DIR)tahoe-opcode.h $(OPCODE_DIR)rs6k-opcode.h +OPCODE_DIR1 = ../include/opcode/ +OPCODE_DIR2 = ./ +OPCODES = $(OPCODE_DIR1)pn.h $(OPCODE_DIR1)np1.h \ + $(OPCODE_DIR1)sparc.h $(OPCODE_DIR1)vax.h \ + $(OPCODE_DIR1)m68k.h $(OPCODE_DIR2)ns32k-opcode.h \ + $(OPCODE_DIR2)convx-opcode.h $(OPCODE_DIR1)pyr.h \ + $(OPCODE_DIR1)mips.h $(OPCODE_DIR2)am29k-opcode.h \ + $(OPCODE_DIR1)arm.h $(OPCODE_DIR1)m88k.h \ + $(OPCODE_DIR1)tahoe.h $(OPCODE_DIR2)rs6k-opcode.h \ + $(OPCODE_DIR1)h8300.h $(OPCODE_DIR1)i960.h \ + $(OPCODE_DIR1)i386.h $(OPCODE_DIR1)i860.h REMOTE_EXAMPLES = m68k-stub.c i386-stub.c rem-multi.shar |