diff options
author | Michael Meissner <gnu@the-meissners.org> | 1995-11-09 02:35:15 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1995-11-09 02:35:15 +0000 |
commit | c5addc193d90f24d60acb7e3c025f2bb6ba01be7 (patch) | |
tree | bbcec41eb08105ff1d1dd079a75e653b1fa49c1b /sim/ppc/Makefile.in | |
parent | 33698029dbb6a003bf4a79c177f4f43d9269212d (diff) | |
download | gdb-c5addc193d90f24d60acb7e3c025f2bb6ba01be7.zip gdb-c5addc193d90f24d60acb7e3c025f2bb6ba01be7.tar.gz gdb-c5addc193d90f24d60acb7e3c025f2bb6ba01be7.tar.bz2 |
General cleanup; add -t options support to print all options
Diffstat (limited to 'sim/ppc/Makefile.in')
-rw-r--r-- | sim/ppc/Makefile.in | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index 0a12ee7..4bf46ce 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -214,7 +214,8 @@ LIB_SRC = \ interrupts.c \ devices.c \ device_tree.c \ - mon.c + mon.c \ + options.c MAIN_SRC = \ main.c \ @@ -225,6 +226,7 @@ MAIN_SRC = \ # first LIB_OBJ = \ debug.o \ + options.o \ filter_filename.o \ bits.o \ sim-endian.o \ @@ -266,6 +268,7 @@ $(TARGETLIB): tmp-igen tmp-dgen $(LIB_OBJ) $(GDB_OBJ) # Given that inlines are turned on now, rebuild psim whenever # anything changes. psim.o: psim.c psim.h $(CPU_H) $(IDECODE_H) $(INLINE) $(LIB_SRC) $(BUILT_SRC) + $(CC) -c $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(SIM_CFLAGS) $(HDEFINES) $(TDEFINES) $(INCLUDES) $< bits.o: bits.c $(BASICS_H) @@ -298,11 +301,11 @@ function_unit.o: function_unit.c $(CPU_H) events.o: events.c events.h $(BASICS_H) -sim_calls.o: sim_calls.c $(PSIM_H) function_unit.h itable.h ../../gdb/tm.h devices.h +sim_calls.o: sim_calls.c $(PSIM_H) function_unit.h itable.h ../../gdb/tm.h devices.h options.h spreg.o: spreg.h spreg.c words.h -main.o: main.c $(PSIM_H) function_unit.h itable.h +main.o: main.c $(PSIM_H) function_unit.h itable.h options.h devices.o: devices.c devices.h $(BASICS_H) \ device_tree.h events.h @@ -316,6 +319,8 @@ itable.o: itable.c itable.h mon.o: mon.c $(CPU_H) +options.o: options.c $(BASICS_H) + # # Rules to create the built c source code files # |