diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-06-25 12:30:50 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-06-25 12:30:50 -0700 |
commit | d219a3e46f0a9fe2b997eee8acd6bbe212bef4da (patch) | |
tree | 2b0ccd7055c93a75a332f3f805d17a2a43e8025f /Makefile.in | |
parent | 538628803ba8c0b6cf9d11f83f43fb678fd05e87 (diff) | |
download | nasm-d219a3e46f0a9fe2b997eee8acd6bbe212bef4da.tar.gz nasm-d219a3e46f0a9fe2b997eee8acd6bbe212bef4da.tar.bz2 nasm-d219a3e46f0a9fe2b997eee8acd6bbe212bef4da.zip |
ELF: add header files, begin merging common code, drop .comment
Add something approaching real ELF header files.
Begin merging the common ELF code, beginning with the section name
detection.
Drop automatic generation of .comment section, and in particular the
treatment of .common as a special section (if we decide generating
.comment is still a good idea, we should just do it as a macro.)
Augment the list of known sections, and make it table-driven.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 719d375..50736b9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -65,7 +65,7 @@ NASM = nasm.$(O) nasmlib.$(O) ver.$(O) \ assemble.$(O) labels.$(O) hashtbl.$(O) crc64.$(O) parser.$(O) \ outform.$(O) outlib.$(O) output/outbin.$(O) \ output/outaout.$(O) output/outcoff.$(O) \ - output/outelf32.$(O) output/outelf64.$(O) \ + output/outelf.$(O) output/outelf32.$(O) output/outelf64.$(O) \ output/outobj.$(O) output/outas86.$(O) output/outrdf2.$(O) \ output/outdbg.$(O) output/outieee.$(O) output/outmacho.$(O) \ preproc.$(O) quote.$(O) pptok.$(O) macros.$(O) \ |