summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-06-25 13:06:49 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-06-25 13:06:49 -0700
commit1acf6ba82293cda3fc18cc3ba3a64328e496ca64 (patch)
tree8135eb6bc7ba9b0b71d4c1f9b0da8356e4c6b8fa /Makefile.in
parentd219a3e46f0a9fe2b997eee8acd6bbe212bef4da (diff)
downloadnasm-1acf6ba82293cda3fc18cc3ba3a64328e496ca64.tar.gz
Handle the new ELF headers in the dependency generation
The dependency machinery relies on properly rooted includes, so give it to them... the path syntax munging machinery in the dependency script handles it from a Makefile syntax perspective, and then we can hope that C compilers are smart enough to deal with forward-slash paths even when that is not the native syntax. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in13
1 files changed, 9 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index 50736b95..fbdf3f68 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -294,12 +294,17 @@ output/outcoff.$(O): output/outcoff.c compiler.h config.h insnsi.h nasm.h \
nasmlib.h outform.h outlib.h pptok.h preproc.h raa.h regs.h saa.h
output/outdbg.$(O): output/outdbg.c compiler.h config.h insnsi.h nasm.h \
nasmlib.h outform.h pptok.h preproc.h regs.h
+output/outelf.$(O): output/outelf.c compiler.h config.h insnsi.h nasm.h \
+ nasmlib.h output/dwarf.h output/elfcommon.h output/outelf.h pptok.h \
+ preproc.h regs.h
output/outelf32.$(O): output/outelf32.c compiler.h config.h insnsi.h nasm.h \
- nasmlib.h outform.h outlib.h pptok.h preproc.h raa.h rbtree.h regs.h saa.h \
- stdscan.h
+ nasmlib.h outform.h outlib.h output/dwarf.h output/elf32.h \
+ output/elfcommon.h output/outelf.h pptok.h preproc.h raa.h rbtree.h regs.h \
+ saa.h stdscan.h
output/outelf64.$(O): output/outelf64.c compiler.h config.h insnsi.h nasm.h \
- nasmlib.h outform.h outlib.h pptok.h preproc.h raa.h rbtree.h regs.h saa.h \
- stdscan.h
+ nasmlib.h outform.h outlib.h output/dwarf.h output/elf64.h \
+ output/elfcommon.h output/outelf.h pptok.h preproc.h raa.h rbtree.h regs.h \
+ saa.h stdscan.h
output/outieee.$(O): output/outieee.c compiler.h config.h insnsi.h nasm.h \
nasmlib.h outform.h pptok.h preproc.h regs.h
output/outmacho.$(O): output/outmacho.c compiler.h config.h insnsi.h nasm.h \