diff options
| author | bjh21 <bjh21@NetBSD.org> | 2001-11-15 15:21:53 +0000 |
|---|---|---|
| committer | bjh21 <bjh21@NetBSD.org> | 2001-11-15 15:21:53 +0000 |
| commit | a25491ad7301ed7a64dbd43bd0836345cbf83eda (patch) | |
| tree | c4863c9ca150c1d8c59eabdc1036b11afcd916ee /gnu | |
| parent | b684cbc2a737166835e09c521df1d347f9b4ed9a (diff) | |
Don't use $< in non-implicit rules. Instead, name the source explicitly.
This should help with PR 14588, and has been submitted upstream.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/dist/toolchain/sim/arm/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/dist/toolchain/sim/arm/Makefile.in b/gnu/dist/toolchain/sim/arm/Makefile.in index e2f2b3c5f0a..47d17eef5db 100644 --- a/gnu/dist/toolchain/sim/arm/Makefile.in +++ b/gnu/dist/toolchain/sim/arm/Makefile.in @@ -31,10 +31,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 |
