diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-06-08 17:13:51 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-06-08 17:13:51 -0700 |
commit | 9e3d217ee3869e4f4ddb1466621c079e14754660 (patch) | |
tree | 638575ae4165ab469bbe765c72868db9cc33de34 /sample/Makefile | |
parent | 601eab3b8c947b2725e9376954bcd5ebfc954d0a (diff) | |
download | syslinux-9e3d217ee3869e4f4ddb1466621c079e14754660.tar.gz |
Show list file addresses in absolutesyslinux-3.50
Small Perl script to postprocess the listfile and show absolute addresses
instead of section-relative. This only applies to the main address, not
to addresses in bracketed fields.
Diffstat (limited to 'sample/Makefile')
-rw-r--r-- | sample/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sample/Makefile b/sample/Makefile index cc22a984..22573e63 100644 --- a/sample/Makefile +++ b/sample/Makefile @@ -56,7 +56,7 @@ all: syslogo.lss comecho.com hello.c32 hello2.c32 filetest.c32 c32echo.c32 \ $(OBJCOPY) -O binary $< $@ %.com: %.asm - $(NASM) -f bin -o $@ -l $*.lst $< + $(NASM) -O99 -f bin -o $@ -l $*.lst $< $(LIB): $(LIBOBJS) rm -f $@ |