diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-07-07 03:55:26 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-07-07 03:55:26 +0000 |
commit | e5a6c59f0944ada81db8923ec0822ae84af4e61b (patch) | |
tree | 418cbdd6d727a129c501c1df849c2c2b3e541234 | |
parent | 8c419bab043a229dcbedaa03383b4878d595973b (diff) |
(boot.1, boot.a): Use $(LD) and $(OBJCOPY) instead of explicit names.
-rw-r--r-- | boot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/boot/Makefile b/boot/Makefile index 1010c6b0..3f619498 100644 --- a/boot/Makefile +++ b/boot/Makefile @@ -42,7 +42,7 @@ ourdevice.defs: $(includedir)/device/device.defs sed -e '/out device : device_t/s/device_t/mach_port_send_t/' $< > $@ boot.1: boot frankemul.ld - i386-gnuelf-ld -o boot.1 -T frankemul.ld boot + $(LD) -o boot.1 -T frankemul.ld boot boot.a: boot.1 - i386-gnuelf-objcopy -S --remove-section=.comment -O a.out-mach3 \ + $(OBJCOPY) -S --remove-section=.comment -O a.out-mach3 \ boot.1 boot.a |