-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathMakefile.am
More file actions
35 lines (25 loc) · 1.11 KB
/
Makefile.am
File metadata and controls
35 lines (25 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
h_sources = irstlm_ranker.h lrx_compiler.h lrx_processor.h multi_translator.h \
tagger_output_processor.h binary_header.h
cc_sources = lrx_compiler.cc lrx_processor.cc multi_translator.cc \
tagger_output_processor.cc
library_includedir = $(includedir)/$(PACKAGE_NAME)-$(VERSION_API)/$(PACKAGE_NAME)
library_include_HEADERS = $(h_sources)
lib_LTLIBRARIES = libapertium-lex-tools0.la
libapertium_lex_tools0_la_SOURCES = $(h_sources) $(cc_sources)
libapertium_lex_tools0_la_LDFLAGS = -version-info $(SOVERSION) -release $(VERSION_API)
bin_PROGRAMS = lrx-comp lrx-proc multitrans process-tagger-output
lrx_comp_SOURCES = lrx_comp.cc
lrx_proc_SOURCES = lrx_proc.cc
multitrans_SOURCES = multitrans.cc
process_tagger_output_SOURCES = process_tagger_output.cc
LDADD = -lapertium-lex-tools$(VERSION_MAJOR) $(lib_LTLIBRARIES)
if HAVE_YASMET
yasmet_SOURCES = yasmet.cc
bin_PROGRAMS += yasmet
endif
if HAVE_IRSTLM
irstlm_ranker_SOURCES = irstlm_ranker.cc
irstlm_ranker_LDADD = -lirstlm
bin_PROGRAMS += irstlm-ranker
endif
EXTRA_DIST = lrx_compiler.h lrx_processor.h multi_translator.h tagger_output_processor.h