forked from guardianproject/libsqlfs
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile.am
More file actions
28 lines (22 loc) · 751 Bytes
/
Makefile.am
File metadata and controls
28 lines (22 loc) · 751 Bytes
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
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I m4
AM_CFLAGS = -I$(top_srcdir) @DEFS@
SUBDIRS = . tests
include_HEADERS = sqlfs.h sqlfs_internal.h
lib_LTLIBRARIES = libsqlfs-1.0.la
libsqlfs_1_0_la_SOURCES = sqlfs.c
libsqlfs_1_0_la_LIBADD = @SQLITE@ @LIBFUSE@
libsqlfs_1_0_la_LDFLAGS = -version-info 1:0:0
bin_PROGRAMS = sqlfscat sqlfsls
sqlfscat_SOURCES = sqlfscat.c
sqlfscat_LDADD = -lpthread @SQLITE@ ./libsqlfs-1.0.la
sqlfsls_SOURCES = sqlfsls.cpp
sqlfsls_LDADD = -lpthread @SQLITE@ ./libsqlfs-1.0.la
if WITH_LIBFUSE
bin_PROGRAMS += fuse_sqlfs
fuse_sqlfs_SOURCES = fuse_sqlfs.c
fuse_sqlfs_LDADD = -lpthread @SQLITE@ @LIBFUSE@ ./libsqlfs-1.0.la
endif
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libsqlfs.pc
EXTRA_DIST = libsqlfs.pc.in