aboutsummaryrefslogtreecommitdiffstats
path: root/epan/crypt
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2016-10-27 17:36:39 -0400
committerMichael Mann <mmann78@netscape.net>2016-10-28 13:43:49 +0000
commit64b5ae0892078b8b8f970a9875c675f57de6c239 (patch)
treec92962689a9bdf9d6bb9a45a209b207db3ff5eb6 /epan/crypt
parent3b1d9913711d4818388e350684cadb94255a98eb (diff)
automake: separate crypt C and header files.
Only pass the C files files to checkAPIs (to match cmake and to allow checkAPIs to pass this directory). Change-Id: I305aeaaf1882061bad166957ae83383a0f35dfb7 Reviewed-on: https://code.wireshark.org/review/18513 Petri-Dish: Jeff Morriss <jeff.morriss.ws@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/crypt')
-rw-r--r--epan/crypt/Makefile.am14
1 files changed, 10 insertions, 4 deletions
diff --git a/epan/crypt/Makefile.am b/epan/crypt/Makefile.am
index b1d0fda3e9..bf5201bb63 100644
--- a/epan/crypt/Makefile.am
+++ b/epan/crypt/Makefile.am
@@ -27,11 +27,13 @@ noinst_LTLIBRARIES = libairpdcap.la
include Custom.common
-libairpdcap_la_SOURCES = \
+CRYPT_SOURCES = \
airpdcap.c \
airpdcap_ccmp.c \
airpdcap_rijndael.c \
- airpdcap_tkip.c \
+ airpdcap_tkip.c
+
+CRYPT_INCLUDES = \
airpdcap_debug.h \
airpdcap_interop.h \
airpdcap_int.h \
@@ -40,7 +42,11 @@ libairpdcap_la_SOURCES = \
airpdcap_user.h \
airpdcap_ws.h \
kasumi.h \
- wep-wpadefs.h \
+ wep-wpadefs.h
+
+libairpdcap_la_SOURCES = \
+ $(CRYPT_SOURCES) \
+ $(CRYPT_INCLUDES) \
$(CUSTOM_CRYPTO_SRC)
EXTRA_DIST = \
@@ -61,4 +67,4 @@ MAINTAINERCLEANFILES = \
checkapi:
$(PERL) $(top_srcdir)/tools/checkAPIs.pl -g termoutput -build \
-sourcedir=$(srcdir) \
- $(libairpdcap_la_SOURCES)
+ $(CRYPT_SOURCES)