summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Herbszt <herbszt@gmx.de>2009-12-05 17:48:00 +0100
committerSebastian Herbszt <herbszt@gmx.de>2009-12-05 17:48:00 +0100
commit97becbb606f88e2ace069c953bc6042666111865 (patch)
tree6c5a76ae0b3718dc34aa21ff6a67c3de87e5c5bf
parentaae5483d9ebd6f091aa740108ad7f2958303931f (diff)
downloadsyslinux-97becbb606f88e2ace069c953bc6042666111865.tar.gz
gfxboot: use $(NASM) and $(OBJCOPY)
Use $(NASM) and $(OBJCOPY) in Makefile. Signed-off-by: Sebastian Herbszt <herbszt@gmx.de>
-rw-r--r--com32/gfxboot/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/com32/gfxboot/Makefile b/com32/gfxboot/Makefile
index 2affcdea..73133e1b 100644
--- a/com32/gfxboot/Makefile
+++ b/com32/gfxboot/Makefile
@@ -22,8 +22,8 @@ gfxboot.elf : gfxboot.o realmode_callback.o $(LIBS) $(C_LIBS)
$(LD) $(LDFLAGS) -o $@ $^
realmode_callback.o: realmode_callback.asm
- nasm -f bin -O99 -o $*.tmp -l $*.lst $<
- objcopy -B i386 -I binary -O elf32-i386 \
+ $(NASM) -f bin -O99 -o $*.tmp -l $*.lst $<
+ $(OBJCOPY) -B i386 -I binary -O elf32-i386 \
--redefine-sym _binary_$*_tmp_start=$*_start \
--redefine-sym _binary_$*_tmp_end=$*_end \
--strip-symbol _binary_$*_tmp_size \