| OLD | NEW |
| 1 # The IGEN simulator generator for GDB, the GNU Debugger. | 1 # The IGEN simulator generator for GDB, the GNU Debugger. |
| 2 # | 2 # |
| 3 # Copyright 2002, 2007-2012 Free Software Foundation, Inc. | 3 # Copyright 2002-2013 Free Software Foundation, Inc. |
| 4 # | 4 # |
| 5 # Contributed by Andrew Cagney. | 5 # Contributed by Andrew Cagney. |
| 6 # | 6 # |
| 7 # This file is part of GDB. | 7 # This file is part of GDB. |
| 8 # | 8 # |
| 9 # This program is free software; you can redistribute it and/or modify | 9 # This program is free software; you can redistribute it and/or modify |
| 10 # it under the terms of the GNU General Public License as published by | 10 # it under the terms of the GNU General Public License as published by |
| 11 # the Free Software Foundation; either version 3 of the License, or | 11 # the Free Software Foundation; either version 3 of the License, or |
| 12 # (at your option) any later version. | 12 # (at your option) any later version. |
| 13 # | 13 # |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 gen-model.o \ | 110 gen-model.o \ |
| 111 gen-itable.o \ | 111 gen-itable.o \ |
| 112 gen-icache.o \ | 112 gen-icache.o \ |
| 113 gen-semantics.o \ | 113 gen-semantics.o \ |
| 114 gen-idecode.o \ | 114 gen-idecode.o \ |
| 115 gen-support.o \ | 115 gen-support.o \ |
| 116 gen-engine.o \ | 116 gen-engine.o \ |
| 117 gen.o | 117 gen.o |
| 118 | 118 |
| 119 igen: igen.o $(IGEN_OBJS) | 119 igen: igen.o $(IGEN_OBJS) |
| 120 » $(CC_FOR_BUILD) $(BUILD_LDFLAGS) -o igen igen.o $(IGEN_OBJS) $(LIBIBERTY
_LIB) | 120 » $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o igen igen.o $(IGEN_O
BJS) $(LIBIBERTY_LIB) |
| 121 | 121 |
| 122 igen.o: igen.c misc.h filter_host.h lf.h table.h ld-decode.h ld-cache.h ld-insn.
h filter.h gen-model.h gen-itable.h gen-icache.h gen-idecode.h gen-engine.h gen-
semantics.h gen-support.h gen.h igen.h | 122 igen.o: igen.c misc.h filter_host.h lf.h table.h ld-decode.h ld-cache.h ld-insn.
h filter.h gen-model.h gen-itable.h gen-icache.h gen-idecode.h gen-engine.h gen-
semantics.h gen-support.h gen.h igen.h |
| 123 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/igen.c | 123 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/igen.c |
| 124 | 124 |
| 125 tmp-table: table.c table.h misc.o lf.o filter_host.o | 125 tmp-table: table.c table.h misc.o lf.o filter_host.o |
| 126 $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o tmp-table -DMAIN $(s
rcdir)/table.c misc.o lf.o filter_host.o $(BUILD_LIBS) | 126 $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o tmp-table -DMAIN $(s
rcdir)/table.c misc.o lf.o filter_host.o $(BUILD_LIBS) |
| 127 | 127 |
| 128 tmp-filter: filter.c filter.h lf.o misc.o filter_host.o | 128 tmp-filter: filter.c filter.h lf.o misc.o filter_host.o |
| 129 $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o tmp-filter -DMAIN $(
srcdir)/filter.c lf.o misc.o filter_host.o $(BUILD_LIBS) | 129 $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o tmp-filter -DMAIN $(
srcdir)/filter.c lf.o misc.o filter_host.o $(BUILD_LIBS) |
| 130 | 130 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 | 177 |
| 178 config.h: stamp-h ; @true | 178 config.h: stamp-h ; @true |
| 179 stamp-h: config.in config.status | 179 stamp-h: config.in config.status |
| 180 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status | 180 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status |
| 181 | 181 |
| 182 config.status: configure | 182 config.status: configure |
| 183 $(SHELL) ./config.status --recheck | 183 $(SHELL) ./config.status --recheck |
| 184 | 184 |
| 185 install: | 185 install: |
| 186 # | 186 # |
| OLD | NEW |