diff options
author | Ben Elliston <bje@au.ibm.com> | 2000-12-05 00:56:44 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2000-12-05 00:56:44 +0000 |
commit | 5223d3d721055350cac967a2304a9cf43fc9d1e5 (patch) | |
tree | 6517f2534db785d02c2ed02fe407e923d0e0687c /sim | |
parent | bef2292b5e063c2037a9c5ac6266f56d71aa7662 (diff) | |
download | gdb-5223d3d721055350cac967a2304a9cf43fc9d1e5.tar.gz |
2000-12-05 Ben Elliston <bje@redhat.com>
* Make-common.in (cgen-defs): New target.
(cgen-decode): Pass $(EXTRAFILES).
Diffstat (limited to 'sim')
-rw-r--r-- | sim/common/ChangeLog | 3 | ||||
-rw-r--r-- | sim/common/Make-common.in | 9 |
2 files changed, 10 insertions, 2 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index e9aad81c4cf..d2248279b3e 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,5 +1,8 @@ 2000-12-05 Ben Elliston <bje@redhat.com> + * Make-common.in (cgen-defs): New target. + (cgen-decode): Pass $(EXTRAFILES). + * genmloop.sh: Use @prefix@, not @cpu@ throughout. Add -prefix and -outfile-suffix options. diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index 98e663b7686..eb65825ff28 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -1,5 +1,5 @@ # Makefile fragment for common parts of all simulators. -# Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. +# Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. # Contributed by Cygnus Support. # This program is free software; you can redistribute it and/or modify @@ -691,10 +691,15 @@ cgen-cpu: force $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \ $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" "$(EXTRAFILES)" +cgen-defs: force + $(SHELL) $(srccom)/cgen.sh defs $(srcdir) \ + $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \ + $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" ignored + cgen-decode: force $(SHELL) $(srccom)/cgen.sh decode $(srcdir) \ $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \ - $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" ignored + $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" "$(EXTRAFILES)" cgen-cpu-decode: force $(SHELL) $(srccom)/cgen.sh cpu-decode $(srcdir) \ |