libsodium/test/Makefile.am

179 lines
4.2 KiB
Makefile
Raw Normal View History

2013-01-20 17:03:05 -05:00
2013-01-20 20:23:37 -05:00
EXTRA_DIST = \
cmptest.h \
windows/windows-quirks.h \
2013-01-20 22:07:21 -05:00
auth.expected \
auth2.expected \
auth3.expected \
auth5.expected \
box.expected \
box2.expected \
box7.expected \
box8.expected \
core1.expected \
core2.expected \
core3.expected \
core4.expected \
core5.expected \
core6.expected \
hash.expected \
hash2.expected \
hash3.expected \
onetimeauth.expected \
onetimeauth2.expected \
onetimeauth7.expected \
scalarmult.expected \
scalarmult2.expected \
scalarmult5.expected \
scalarmult6.expected \
secretbox.expected \
secretbox2.expected \
secretbox7.expected \
secretbox8.expected \
stream.expected \
stream2.expected \
stream3.expected \
stream4.expected
2013-01-20 20:23:37 -05:00
2013-01-20 17:03:05 -05:00
AM_CPPFLAGS = \
2013-01-20 18:25:22 -05:00
-I$(top_srcdir)/src/libsodium/include \
-I$(top_srcdir)/src/libsodium/include/sodium
2013-01-20 17:03:05 -05:00
TESTS_TARGETS = \
2013-01-20 18:41:17 -05:00
auth \
auth2 \
auth3 \
auth5 \
box \
box2 \
box7 \
box8 \
core1 \
core2 \
core3 \
core4 \
core5 \
core6 \
hash \
hash3 \
onetimeauth \
onetimeauth2 \
onetimeauth7 \
randombytes \
2013-01-20 18:41:17 -05:00
scalarmult \
scalarmult2 \
scalarmult5 \
scalarmult6 \
secretbox \
secretbox2 \
secretbox7 \
secretbox8 \
stream \
stream2 \
stream3 \
stream4
2013-01-20 17:03:05 -05:00
check_PROGRAMS = $(TESTS_TARGETS)
TESTS = $(TESTS_TARGETS)
TESTS_LDADD = $(top_srcdir)/src/libsodium/libsodium.la
2013-01-20 20:23:37 -05:00
auth_SOURCE = cmptest.h auth.c
2013-01-20 18:25:22 -05:00
auth_LDADD = $(TESTS_LDADD)
2013-01-20 17:03:05 -05:00
2013-01-20 20:23:37 -05:00
auth2_SOURCE = cmptest.h auth2.c
2013-01-20 18:41:17 -05:00
auth2_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
auth3_SOURCE = cmptest.h auth3.c
2013-01-20 18:41:17 -05:00
auth3_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
auth5_SOURCE = cmptest.h auth5.c windows/windows-quirks.h
2013-01-20 18:41:17 -05:00
auth5_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
box_SOURCE = cmptest.h box.c
2013-01-20 18:41:17 -05:00
box_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
box2_SOURCE = cmptest.h box2.c
2013-01-20 18:41:17 -05:00
box2_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
box7_SOURCE = cmptest.h box7.c
2013-01-20 18:41:17 -05:00
box7_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
box8_SOURCE = cmptest.h box8.c
2013-01-20 18:41:17 -05:00
box8_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
core1_SOURCE = cmptest.h core1.c
2013-01-20 18:41:17 -05:00
core1_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
core2_SOURCE = cmptest.h core2.c
2013-01-20 18:41:17 -05:00
core2_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
core3_SOURCE = cmptest.h core3.c
2013-01-20 18:41:17 -05:00
core3_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
core4_SOURCE = cmptest.h core4.c
2013-01-20 18:41:17 -05:00
core4_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
core5_SOURCE = cmptest.h core5.c
2013-01-20 18:41:17 -05:00
core5_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
core6_SOURCE = cmptest.h core6.c
2013-01-20 18:41:17 -05:00
core6_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
hash_SOURCE = cmptest.h hash.c
2013-01-20 18:41:17 -05:00
hash_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
hash3_SOURCE = cmptest.h hash3.c
2013-01-20 18:41:17 -05:00
hash3_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
onetimeauth_SOURCE = cmptest.h onetimeauth.c
2013-01-20 18:41:17 -05:00
onetimeauth_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
onetimeauth2_SOURCE = cmptest.h onetimeauth2.c
2013-01-20 18:41:17 -05:00
onetimeauth2_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
onetimeauth7_SOURCE = cmptest.h onetimeauth7.c
2013-01-20 18:41:17 -05:00
onetimeauth7_LDADD = $(TESTS_LDADD)
randombytes_SOURCE = randombytes.c
randombytes_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
scalarmult_SOURCE = cmptest.h scalarmult.c
2013-01-20 18:41:17 -05:00
scalarmult_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
scalarmult2_SOURCE = cmptest.h scalarmult2.c
2013-01-20 18:41:17 -05:00
scalarmult2_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
scalarmult5_SOURCE = cmptest.h scalarmult5.c
2013-01-20 18:41:17 -05:00
scalarmult5_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
scalarmult6_SOURCE = cmptest.h scalarmult6.c
2013-01-20 18:41:17 -05:00
scalarmult6_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
secretbox_SOURCE = cmptest.h secretbox.c
2013-01-20 18:41:17 -05:00
secretbox_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
secretbox2_SOURCE = cmptest.h secretbox2.c
2013-01-20 18:41:17 -05:00
secretbox2_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
secretbox7_SOURCE = cmptest.h secretbox7.c
2013-01-20 18:41:17 -05:00
secretbox7_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
secretbox8_SOURCE = cmptest.h secretbox8.c
2013-01-20 18:41:17 -05:00
secretbox8_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
stream_SOURCE = cmptest.h stream.c
2013-01-20 18:41:17 -05:00
stream_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
stream2_SOURCE = cmptest.h stream2.c
2013-01-20 18:41:17 -05:00
stream2_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
stream3_SOURCE = cmptest.h stream3.c
2013-01-20 18:41:17 -05:00
stream3_LDADD = $(TESTS_LDADD)
2013-01-20 20:23:37 -05:00
stream4_SOURCE = cmptest.h stream4.c
2013-01-20 18:41:17 -05:00
stream4_LDADD = $(TESTS_LDADD)
2013-01-20 17:03:05 -05:00
verify: check