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 | 969b00197fc41087f9eb808a7ebba293966f90de (patch) | |
tree | c81c5be494e9ad898d196f4ad63c1fc72fd8dc6d /word-aligner | |
parent | f616df9a37edc3bbcecedc395ba7233c8fab3770 (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 |