Remove Makefile.common files
[metze/wireshark/wip.git] / epan / crypt / Makefile.am
1 # Makefile.am
2 # Automake file for the airpdcap for Wireshark
3 #
4 # Wireshark - Network traffic analyzer
5 # By Gerald Combs <gerald@wireshark.org>
6 # Copyright 1998 Gerald Combs
7 #
8 # This program is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License
10 # as published by the Free Software Foundation; either version 2
11 # of the License, or (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21
22 include $(top_srcdir)/Makefile.am.inc
23
24 AM_CPPFLAGS = $(INCLUDEDIRS) $(WS_CPPFLAGS) $(GLIB_CFLAGS)
25
26 noinst_LTLIBRARIES = libairpdcap.la
27
28 include Custom.common
29
30 libairpdcap_la_SOURCES =        \
31         airpdcap.c              \
32         airpdcap_ccmp.c         \
33         airpdcap_debug.c        \
34         airpdcap_rijndael.c     \
35         airpdcap_tkip.c         \
36         airpdcap_debug.h        \
37         airpdcap_interop.h      \
38         airpdcap_int.h          \
39         airpdcap_rijndael.h     \
40         airpdcap_system.h       \
41         airpdcap_user.h         \
42         airpdcap_ws.h           \
43         kasumi.h                \
44         wep-wpadefs.h           \
45         $(CUSTOM_CRYPTO_SRC)
46
47 EXTRA_DIST = \
48         Custom.common \
49         CMakeLists.txt  \
50         CMakeListsCustom.txt.example
51
52 CLEANFILES = \
53         libairpdcap.a   \
54         libairpdcap.la  \
55         *~
56
57 DISTCLEANFILES =
58
59 MAINTAINERCLEANFILES =  \
60         Makefile.in
61
62 checkapi:
63         $(PERL) $(top_srcdir)/tools/checkAPIs.pl -g termoutput -build \
64         -sourcedir=$(srcdir) \
65         $(libairpdcap_la_SOURCES)