-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile.am
41 lines (29 loc) · 897 Bytes
/
Makefile.am
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
36
37
38
39
lib_LTLIBRARIES = libtx.la
libtx_la_CPPFLAGS = -D_REENTRANT
libtx_la_LIBADD = -lz
libtx_la_SOURCES = \
ssv.cpp ssv.hpp \
tx.cpp tx.hpp
pkginclude_HEADERS = tx.hpp ssv.hpp
bin_PROGRAMS = txsearch txbuild txsearch_mmap s2sbuild s2ssearch txlist
txsearch_CPPFLAGS = -D_REENTRANT
txsearch_LDADD = libtx.la
txsearch_SOURCES = txsearch.cpp
txbuild_CPPFLAGS = -D_REENTRANT
txbuild_LDADD = libtx.la
txbuild_SOURCES = txbuild.cpp
txsearch_mmap_CPPFLAGS = -D_REENTRANT
txsearch_mmap_LDADD = libtx.la
txsearch_mmap_SOURCES = txsearch_mmap.cpp
s2sbuild_CPPFLAGS = -D_REENTRANT
s2sbuild_LDADD = libtx.la
s2sbuild_SOURCES = s2sbuild.cpp
s2ssearch_CPPFLAGS = -D_REENTRANT
s2ssearch_LDADD = libtx.la
s2ssearch_SOURCES = s2ssearch.cpp
txlist_CPPFLAGS = -D_REENTRANT
txlist_LDADD = libtx.la
txlist_SOURCES = txlist.cpp
EXTRA_DIST = tx.pc.in
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = tx.pc