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>
This commit is contained in:
Jeff Morriss 2016-10-27 17:36:39 -04:00 committed by Michael Mann
parent 3b1d991371
commit 64b5ae0892
1 changed files with 10 additions and 4 deletions

View File

@ -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)