2014-09-07 15:08:27 +00:00
|
|
|
######################################################################
|
|
|
|
# s3fs - FUSE-based file system backed by Amazon S3
|
|
|
|
#
|
|
|
|
# Copyright 2007-2008 Randy Rizun <rrizun@gmail.com>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
######################################################################
|
2010-11-13 23:59:23 +00:00
|
|
|
bin_PROGRAMS=s3fs
|
|
|
|
|
|
|
|
AM_CPPFLAGS = $(DEPS_CFLAGS)
|
2014-05-06 14:23:05 +00:00
|
|
|
if USE_GNUTLS_NETTLE
|
2020-08-22 12:40:53 +00:00
|
|
|
AM_CPPFLAGS += -DUSE_GNUTLS_NETTLE
|
2014-05-06 14:23:05 +00:00
|
|
|
endif
|
|
|
|
|
2019-02-12 02:41:01 +00:00
|
|
|
s3fs_SOURCES = \
|
2020-08-22 12:40:53 +00:00
|
|
|
s3fs.cpp \
|
|
|
|
s3fs_global.cpp \
|
|
|
|
s3fs_help.cpp \
|
|
|
|
s3fs_logger.cpp \
|
|
|
|
s3fs_xml.cpp \
|
|
|
|
metaheader.cpp \
|
|
|
|
mpu_util.cpp \
|
|
|
|
mvnode.cpp \
|
|
|
|
curl.cpp \
|
|
|
|
curl_handlerpool.cpp \
|
|
|
|
curl_multi.cpp \
|
|
|
|
curl_util.cpp \
|
|
|
|
bodydata.cpp \
|
|
|
|
s3objlist.cpp \
|
|
|
|
cache.cpp \
|
|
|
|
string_util.cpp \
|
|
|
|
s3fs_util.cpp \
|
|
|
|
fdcache.cpp \
|
|
|
|
fdcache_entity.cpp \
|
|
|
|
fdcache_page.cpp \
|
|
|
|
fdcache_stat.cpp \
|
2020-09-13 07:49:25 +00:00
|
|
|
fdcache_auto.cpp \
|
2020-08-22 12:40:53 +00:00
|
|
|
addhead.cpp \
|
|
|
|
sighandlers.cpp \
|
|
|
|
autolock.cpp \
|
|
|
|
common_auth.cpp
|
2014-05-06 14:23:05 +00:00
|
|
|
if USE_SSL_OPENSSL
|
2020-08-22 12:40:53 +00:00
|
|
|
s3fs_SOURCES += openssl_auth.cpp
|
2014-05-06 14:23:05 +00:00
|
|
|
endif
|
|
|
|
if USE_SSL_GNUTLS
|
2020-08-22 12:40:53 +00:00
|
|
|
s3fs_SOURCES += gnutls_auth.cpp
|
2014-05-06 14:23:05 +00:00
|
|
|
endif
|
|
|
|
if USE_SSL_NSS
|
2020-08-22 12:40:53 +00:00
|
|
|
s3fs_SOURCES += nss_auth.cpp
|
2014-05-06 14:23:05 +00:00
|
|
|
endif
|
2010-11-13 23:59:23 +00:00
|
|
|
|
|
|
|
s3fs_LDADD = $(DEPS_LIBS)
|
|
|
|
|
2020-11-24 12:37:09 +00:00
|
|
|
noinst_PROGRAMS = \
|
|
|
|
test_curl_util \
|
|
|
|
test_string_util
|
|
|
|
|
|
|
|
test_curl_util_SOURCES = common_auth.cpp curl_util.cpp string_util.cpp test_curl_util.cpp s3fs_global.cpp s3fs_logger.cpp
|
|
|
|
if USE_SSL_OPENSSL
|
|
|
|
test_curl_util_SOURCES += openssl_auth.cpp
|
|
|
|
endif
|
|
|
|
if USE_SSL_GNUTLS
|
|
|
|
test_curl_util_SOURCES += gnutls_auth.cpp
|
|
|
|
endif
|
|
|
|
if USE_SSL_NSS
|
|
|
|
test_curl_util_SOURCES += nss_auth.cpp
|
|
|
|
endif
|
|
|
|
|
|
|
|
test_curl_util_LDADD = $(DEPS_LIBS)
|
2014-12-06 23:51:36 +00:00
|
|
|
|
2020-10-13 14:00:11 +00:00
|
|
|
test_string_util_SOURCES = string_util.cpp test_string_util.cpp s3fs_logger.cpp
|
2014-12-06 23:51:36 +00:00
|
|
|
|
2020-11-24 12:37:09 +00:00
|
|
|
TESTS = \
|
|
|
|
test_curl_util \
|
|
|
|
test_string_util
|
2019-02-12 02:41:01 +00:00
|
|
|
|
|
|
|
clang-tidy:
|
|
|
|
clang-tidy $(s3fs_SOURCES) -- $(DEPS_CFLAGS) $(CPPFLAGS)
|
2020-08-22 12:40:53 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Local variables:
|
|
|
|
# tab-width: 4
|
|
|
|
# c-basic-offset: 4
|
|
|
|
# End:
|
|
|
|
# vim600: expandtab sw=4 ts= fdm=marker
|
|
|
|
# vim<600: expandtab sw=4 ts=4
|
|
|
|
#
|