diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-08-10 15:56:52 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-08-10 15:59:34 -0700 |
commit | eaa68f1c85126fa48601f3a40e9c930b01f8660e (patch) | |
tree | 4bdea44a5e06cc5b1f5de2fc59391b8972a7a2d8 /Makefile.in | |
parent | 767750b666f0e66b25fa9d1c7b905a935c637786 (diff) | |
download | nasm-eaa68f1c85126fa48601f3a40e9c930b01f8660e.tar.gz nasm-eaa68f1c85126fa48601f3a40e9c930b01f8660e.tar.bz2 nasm-eaa68f1c85126fa48601f3a40e9c930b01f8660e.zip |
Add strlcpy() function
Add strlcpy() function and implementation, and use configure to detect
if strlcpy() is natively available on the system.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Makefile.in b/Makefile.in index fc10a5c..80af30a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -72,7 +72,8 @@ NASM = nasm.$(O) nasmlib.$(O) ver.$(O) \ output/outdbg.$(O) output/outieee.$(O) output/outmacho32.$(O) \ output/outmacho64.$(O) preproc.$(O) quote.$(O) pptok.$(O) \ macros.$(O) listing.$(O) eval.$(O) exprlib.$(O) stdscan.$(O) \ - strfunc.$(O) tokhash.$(O) regvals.$(O) regflags.$(O) + strfunc.$(O) tokhash.$(O) regvals.$(O) regflags.$(O) \ + lib/strlcpy.$(O) NDISASM = ndisasm.$(O) disasm.$(O) sync.$(O) nasmlib.$(O) ver.$(O) \ insnsd.$(O) insnsb.$(O) insnsn.$(O) regs.$(O) regdis.$(O) @@ -280,6 +281,7 @@ insnsn.$(O): insnsn.c compiler.h config.h insnsi.h tables.h labels.$(O): labels.c compiler.h config.h directives.h hashtbl.h insnsi.h \ nasm.h nasmlib.h pptok.h preproc.h regs.h lib/snprintf.$(O): lib/snprintf.c compiler.h config.h nasmlib.h +lib/strlcpy.$(O): lib/strlcpy.c compiler.h config.h lib/vsnprintf.$(O): lib/vsnprintf.c compiler.h config.h nasmlib.h listing.$(O): listing.c compiler.h config.h directives.h insnsi.h listing.h \ nasm.h nasmlib.h pptok.h preproc.h regs.h @@ -321,8 +323,6 @@ output/outelf64.$(O): output/outelf64.c compiler.h config.h directives.h \ eval.h insnsi.h nasm.h nasmlib.h output/dwarf.h output/elf64.h \ output/elfcommon.h output/outelf.h output/outform.h output/outlib.h pptok.h \ preproc.h raa.h rbtree.h regs.h saa.h stdscan.h -output/outexe.$(O): output/outexe.c compiler.h config.h directives.h \ - insnsi.h nasm.h nasmlib.h output/outform.h pptok.h preproc.h regs.h output/outform.$(O): output/outform.c compiler.h config.h directives.h \ insnsi.h nasm.h nasmlib.h output/outform.h pptok.h preproc.h regs.h output/outieee.$(O): output/outieee.c compiler.h config.h directives.h \ @@ -344,14 +344,14 @@ output/outrdf.$(O): output/outrdf.c compiler.h config.h directives.h \ output/outrdf2.$(O): output/outrdf2.c compiler.h config.h directives.h \ insnsi.h nasm.h nasmlib.h output/outform.h output/outlib.h pptok.h \ preproc.h rdoff/rdoff.h regs.h saa.h -parser.$(O): parser.c compiler.h config.h directives.h float.h insns.h \ - insnsi.h nasm.h nasmlib.h parser.h pptok.h preproc.h regs.h stdscan.h \ - tables.h tokens.h +parser.$(O): parser.c compiler.h config.h directives.h eval.h float.h \ + insns.h insnsi.h nasm.h nasmlib.h parser.h pptok.h preproc.h regs.h \ + stdscan.h tables.h tokens.h pptok.$(O): pptok.c compiler.h config.h hashtbl.h nasmlib.h pptok.h \ preproc.h -preproc.$(O): preproc.c compiler.h config.h directives.h hashtbl.h insnsi.h \ - nasm.h nasmlib.h pptok.h preproc.h quote.h regs.h stdscan.h tables.h \ - tokens.h +preproc.$(O): preproc.c compiler.h config.h directives.h eval.h hashtbl.h \ + insnsi.h nasm.h nasmlib.h pptok.h preproc.h quote.h regs.h stdscan.h \ + tables.h tokens.h quote.$(O): quote.c compiler.h config.h nasmlib.h quote.h raa.$(O): raa.c compiler.h config.h nasmlib.h raa.h rbtree.$(O): rbtree.c compiler.h config.h rbtree.h |