summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@linux.intel.com>2017-02-28 18:13:43 -0800
committerH. Peter Anvin <hpa@linux.intel.com>2017-02-28 18:13:43 -0800
commita5a56bd11758dd259d4370e388860012ec09f957 (patch)
tree2f7ff46ccb7902f1b33171005d58f1a7c5338228 /Makefile.in
parent4d58a8fef5fd5d492a76521a5b4446f64069d2e2 (diff)
downloadnasm-a5a56bd11758dd259d4370e388860012ec09f957.tar.gz
exprlib: move dumping code to a separate C file
Most of the time we don't need the dumping code, so move it to a separate C file to the linker can exclude it. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index ca1bcd44..b8888464 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -108,7 +108,7 @@ LIBOBJ = stdlib/snprintf.$(O) stdlib/vsnprintf.$(O) stdlib/strlcpy.$(O) \
asm/directiv.$(O) \
asm/assemble.$(O) asm/labels.$(O) asm/parser.$(O) \
asm/preproc.$(O) asm/quote.$(O) asm/pptok.$(O) \
- asm/listing.$(O) asm/eval.$(O) asm/exprlib.$(O) \
+ asm/listing.$(O) asm/eval.$(O) asm/exprlib.$(O) asm/exprdump.$(O) \
asm/stdscan.$(O) \
asm/strfunc.$(O) asm/tokhash.$(O) \
asm/segalloc.$(O) \