diff options
Diffstat (limited to 'sim/erc32')
-rw-r--r-- | sim/erc32/ChangeLog | 8 | ||||
-rw-r--r-- | sim/erc32/Makefile.in | 6 |
2 files changed, 11 insertions, 3 deletions
diff --git a/sim/erc32/ChangeLog b/sim/erc32/ChangeLog index e885bda..7cb028f 100644 --- a/sim/erc32/ChangeLog +++ b/sim/erc32/ChangeLog @@ -1,3 +1,11 @@ +2006-08-08 Daniel Jacobowitz <dan@codesourcery.com> + + * Makefile.in (func.o, help.o): Correct dependencies. + +2006-08-08 Joel Sherrill <joel.sherrill@oarcorp.com> + + * Makefile.in (install-sis): Honor DESTDIR. + 2006-06-13 Richard Earnshaw <rearnsha@arm.com> * configure: Regenerated. diff --git a/sim/erc32/Makefile.in b/sim/erc32/Makefile.in index 845815a..bb4396b 100644 --- a/sim/erc32/Makefile.in +++ b/sim/erc32/Makefile.in @@ -53,7 +53,7 @@ end.h: end # Copy the files into directories where they will be run. install-sis: installdirs n=`echo sis | sed '$(program_transform_name)'`; \ - $(INSTALL_PROGRAM) sis$(EXEEXT) $(bindir)/$$n$(EXEEXT) + $(INSTALL_PROGRAM) sis$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT) clean-sis: rm -f sis end end.h @@ -69,7 +69,7 @@ configure: erc32.o: erc32.c sis.h end.h exec.o: exec.c sis.h end.h float.o: float.c sis.h end.h -func.o: func.c -help.o: help.c +func.o: func.c sis.h end.h +help.o: help.c sis.h end.h interf.o: interf.c sis.h end.h sis.o: sis.c sis.h end.h |