diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-06-24 16:39:08 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-06-24 16:39:08 -0700 |
commit | c97b8cbafac4924cfc3980c0e0d96c813ed4e1f7 (patch) | |
tree | 7a0c1ff567b2fee57dd0968114701d11a3b6f6dd /dos | |
parent | 3b417b4dca768183bd5ef21618055c64e0d7e4d1 (diff) | |
download | syslinux-c97b8cbafac4924cfc3980c0e0d96c813ed4e1f7.tar.gz |
dos: assume NASM 2.03, so use -MP -MD for dependencies
Assume NASM 2.03 or later, so use -MP -MD to generate dependencies.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'dos')
-rw-r--r-- | dos/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/dos/Makefile b/dos/Makefile index 5bef97b7..10d8f6bb 100644 --- a/dos/Makefile +++ b/dos/Makefile @@ -65,7 +65,6 @@ syslinux.com: syslinux.elf true %.com: %.asm - ( $(NASM) -M -DDEPEND $(NASMOPT) -o $@ -M $< && echo '' ) > .$@.d; true - $(NASM) $(NASMOPT) -f bin -o $@ -l $*.lst $< + $(NASM) $(NASMOPT) -f bin -o $@ -MP -MD .$@.d -l $*.lst $< -include .*.d *.tmp |