diff options
Diffstat (limited to 'com32/gfxboot/Makefile')
-rw-r--r-- | com32/gfxboot/Makefile | 4 |
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 \ |