summaryrefslogtreecommitdiff
path: root/toxencryptsave/Makefile.inc
diff options
context:
space:
mode:
Diffstat (limited to 'toxencryptsave/Makefile.inc')
-rw-r--r--toxencryptsave/Makefile.inc49
1 files changed, 49 insertions, 0 deletions
diff --git a/toxencryptsave/Makefile.inc b/toxencryptsave/Makefile.inc
new file mode 100644
index 00000000..b4f06c90
--- /dev/null
+++ b/toxencryptsave/Makefile.inc
@@ -0,0 +1,49 @@
1lib_LTLIBRARIES += libtoxencryptsave.la
2
3libtoxencryptsave_la_include_HEADERS = \
4 ../toxencryptsave/toxencryptsave.h
5
6libtoxencryptsave_la_includedir = $(includedir)/tox
7
8libtoxencryptsave_la_SOURCES = ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/crypto_pwhash_scryptsalsa208sha256.h \
9 ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/crypto_scrypt.h \
10 ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/pbkdf2-sha256.c \
11 ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c \
12 ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/runtime.h \
13 ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/utils.c \
14 ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/crypto_scrypt-common.c \
15 ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/export.h \
16 ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/pbkdf2-sha256.h \
17 ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/runtime.c \
18 ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/scrypt_platform.c \
19 ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/sysendian.h \
20 ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/utils.h \
21 ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c \
22 ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c \
23 ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/hmac_hmacsha256.c \
24 ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/crypto_auth_hmacsha256.h \
25 ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/crypto_hash_sha256.h \
26 ../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/hash_sha256.c \
27 ../toxencryptsave/toxencryptsave.h \
28 ../toxencryptsave/toxencryptsave.c
29
30
31libtoxencryptsave_la_CFLAGS = -I$(top_srcdir) \
32 -I$(top_srcdir)/toxcore \
33 $(LIBSODIUM_CFLAGS) \
34 $(NACL_CFLAGS) \
35 $(PTHREAD_CFLAGS)
36
37libtoxencryptsave_la_LDFLAGS = $(TOXCORE_LT_LDFLAGS) \
38 $(EXTRA_LT_LDFLAGS) \
39 $(LIBSODIUM_LDFLAGS) \
40 $(NACL_LDFLAGS) \
41 $(MATH_LDFLAGS) \
42 $(RT_LIBS) \
43 $(WINSOCK2_LIBS)
44
45libtoxencryptsave_la_LIBADD = $(LIBSODIUM_LIBS) \
46 $(NACL_OBJECTS) \
47 $(NAC_LIBS) \
48 $(PTHREAD_LIBS) \
49 libtoxcore.la