diff options
author | Ben Harris <bjh21@netbsd.org> | 2001-11-16 18:56:01 +0000 |
---|---|---|
committer | Ben Harris <bjh21@netbsd.org> | 2001-11-16 18:56:01 +0000 |
commit | 6746a76a706e985d7255587961cd0818c4a327ca (patch) | |
tree | b62bf436c55067e5937d7a38cdc52d984e74dccd /sim | |
parent | 1005d5ef96392899519c51b9b8aba8392244e671 (diff) | |
download | ppe42-binutils-6746a76a706e985d7255587961cd0818c4a327ca.tar.gz ppe42-binutils-6746a76a706e985d7255587961cd0818c4a327ca.zip |
2001-11-16 Ben Harris <bjh21@netbsd.org>
* Makefile.in (armemu32.o): Replace $< with autoconf recommended
$(srcdir)/....
(armemu26.o): Ditto.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/arm/ChangeLog | 6 | ||||
-rw-r--r-- | sim/arm/Makefile.in | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/sim/arm/ChangeLog b/sim/arm/ChangeLog index 546898a4e6..901d52e85b 100644 --- a/sim/arm/ChangeLog +++ b/sim/arm/ChangeLog @@ -1,3 +1,9 @@ +2001-11-16 Ben Harris <bjh21@netbsd.org> + + * Makefile.in (armemu32.o): Replace $< with autoconf recommended + $(srcdir)/.... + (armemu26.o): Ditto. + 2001-10-18 Nick Clifton <nickc@cambridge.redhat.com> * armemu.h (CP_ACCESS_ALLOWED): New macro. diff --git a/sim/arm/Makefile.in b/sim/arm/Makefile.in index 19a9bcab4f..cb7c0d9048 100644 --- a/sim/arm/Makefile.in +++ b/sim/arm/Makefile.in @@ -33,10 +33,10 @@ armos.o: armos.c armdefs.h armos.h armfpe.h armcopro.o: armcopro.c armdefs.h armemu26.o: armemu.c armdefs.h armemu.h - $(CC) -c $< -o armemu26.o $(ALL_CFLAGS) + $(CC) -c $(srcdir)/armemu.c -o armemu26.o $(ALL_CFLAGS) armemu32.o: armemu.c armdefs.h armemu.h - $(CC) -c $< -o armemu32.o -DMODE32 $(ALL_CFLAGS) + $(CC) -c $(srcdir)/armemu.c -o armemu32.o -DMODE32 $(ALL_CFLAGS) arminit.o: arminit.c armdefs.h armemu.h |