diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-06-03 16:34:24 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-06-03 16:34:24 +0000 |
commit | f64c2f5715cab1d277b8c0ba15c04293a2691830 (patch) | |
tree | f1dd72269150defcf534ba1018bcc5b06f6f6d80 /sim/erc32/Makefile.in | |
parent | 4fa134beac0943427788687d93cd3a73e56b082e (diff) | |
download | gdb-f64c2f5715cab1d277b8c0ba15c04293a2691830.zip gdb-f64c2f5715cab1d277b8c0ba15c04293a2691830.tar.gz gdb-f64c2f5715cab1d277b8c0ba15c04293a2691830.tar.bz2 |
* Makefile.in (end.h): Use explicit ./ when running end.
Diffstat (limited to 'sim/erc32/Makefile.in')
-rw-r--r-- | sim/erc32/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sim/erc32/Makefile.in b/sim/erc32/Makefile.in index 5ee6db3..5f93c8c 100644 --- a/sim/erc32/Makefile.in +++ b/sim/erc32/Makefile.in @@ -94,7 +94,7 @@ end : $(srcdir)/end.c $(CC) $(srcdir)/end.c -o end end.h : end - end > end.h + ./end > end.h sis: sis.o $(OFILES) $(CC) $(CFLAGS) $(CLAGS2) -o sis sis.o $(OFILES) \ @@ -192,9 +192,10 @@ install: n=`echo sis | sed '$(program_transform_name)'`; \ if [ -d $(tooldir) ] ; then \ if [ -d $(tooldir)/bin ] ; then true ; else mkdir $(tooldir)/bin ; fi; \ - rm -f $(tooldir)/bin/sis; \ + rm -f $(bindir)/sis; \ ln $(bindir)/$$n $(bindir)/sis \ || $(INSTALL_PROGRAM) sis $(bindir)/sis; \ + rm -f $(tooldir)/bin/sis; \ ln $(bindir)/$$n $(tooldir)/bin/sis \ || $(INSTALL_PROGRAM) sis $(tooldir)/bin/sis; \ true; fi |