diff options
author | David D. Zuhn <zoo@cygnus> | 1993-05-21 17:41:21 +0000 |
---|---|---|
committer | David D. Zuhn <zoo@cygnus> | 1993-05-21 17:41:21 +0000 |
commit | b23eaace235586b0e167634e129741d4c7f251e5 (patch) | |
tree | 2d3d966cf0f8e01bb05f00d06fdf74578b535eb3 /sim/Makefile.in | |
parent | b1285bd9ebf4509d251930290e0a825854f593d5 (diff) | |
download | gdb-b23eaace235586b0e167634e129741d4c7f251e5.zip gdb-b23eaace235586b0e167634e129741d4c7f251e5.tar.gz gdb-b23eaace235586b0e167634e129741d4c7f251e5.tar.bz2 |
add no-op dvi target
Diffstat (limited to 'sim/Makefile.in')
-rw-r--r-- | sim/Makefile.in | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/sim/Makefile.in b/sim/Makefile.in index 7dab5ae..588e31e 100644 --- a/sim/Makefile.in +++ b/sim/Makefile.in @@ -87,7 +87,7 @@ FLAGS_TO_PASS = \ STAGESTUFF = $(TARGETLIB) $(OFILES) -all: endian.h $(ALL) +all: $(ALL) clean: $(CLEAN) rm -f endian e.h endian.h @@ -96,6 +96,7 @@ install: $(DO_INSTALL) info: install-info: +dvi: ### build endian.h via a temporary so that interrupted builds will not ### leave an incomplete endian.h lying around. @@ -103,7 +104,8 @@ endian.h: endian ./endian > e.h mv -f e.h endian.h -endian: endian.c +endian: $(srcdir)/endian.c + $(CC) $(CFLAGS) -o endian $(srcdir)/endian.c ### none @@ -116,7 +118,7 @@ install-nothing: force ### z8k -all-z8k: force +all-z8k: endian.h force if [ -f ./z8k/Makefile ] ; then \ rootme=`pwd` ; export rootme ; \ ( cd ./z8k ; $(MAKE) $(FLAGS_TO_PASS) all) ; \ @@ -143,7 +145,7 @@ clean-z8k: force ### h8300 -all-h8300: force +all-h8300: endian.h force if [ -f ./h8300/Makefile ] ; then \ rootme=`pwd` ; export rootme ; \ ( cd ./h8300 ; $(MAKE) $(FLAGS_TO_PASS) all) ; \ @@ -171,7 +173,7 @@ clean-h8300: force ### h8500 -all-h8500: force +all-h8500: endian.h force if [ -f ./h8500/Makefile ] ; then \ rootme=`pwd` ; export rootme ; \ ( cd ./h8500 ; $(MAKE) $(FLAGS_TO_PASS) all) ; \ @@ -199,7 +201,7 @@ clean-h8500: force ### sh -all-sh: force +all-sh: endian.h force if [ -f ./sh/Makefile ] ; then \ rootme=`pwd` ; export rootme ; \ ( cd ./sh ; $(MAKE) $(FLAGS_TO_PASS) all) ; \ |