diff options
author | mjdenkowski <michael.j.denkowski@gmail.com> | 2014-08-07 16:39:19 -0400 |
---|---|---|
committer | mjdenkowski <michael.j.denkowski@gmail.com> | 2014-08-07 16:39:19 -0400 |
commit | 71aa8f36e7a283d4e3ed8fb7484e4df966f4be4a (patch) | |
tree | 078afa9f903ed8b90538f5c33699de15831830c3 /word-aligner | |
parent | 19e1c5a5fbe178b91b5e2995584b5e72a7a5940f (diff) |
Option for static linking (./configure --with-static). Currently limited to a few
binaries.
Diffstat (limited to 'word-aligner')
-rw-r--r-- | word-aligner/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/word-aligner/Makefile.am b/word-aligner/Makefile.am index 075ad009..071e4977 100644 --- a/word-aligner/Makefile.am +++ b/word-aligner/Makefile.am @@ -2,6 +2,7 @@ bin_PROGRAMS = fast_align binderiv fast_align_SOURCES = fast_align.cc ttables.cc da.h ttables.h fast_align_LDADD = ../utils/libutils.a +fast_align_LDFLAGS = $(STATIC_FLAGS) binderiv_SOURCES = binderiv.cc binderiv_LDADD = ../utils/libutils.a |