Packaging: clean spec file
[platform/upstream/libgsasl.git] / Makefile.am
1 # Copyright (C) 2002-2012 Simon Josefsson
2 #
3 # This file is part of GNU SASL Library.
4 #
5 # GNU SASL Library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public License
7 # as published by the Free Software Foundation; either version 2.1 of
8 # the License, or (at your option) any later version.
9 #
10 # GNU SASL Library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # Lesser General Public License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with GNU SASL Library; if not, write to the Free
17 # Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18 # MA 02110-1301, USA.
19
20 ACLOCAL_AMFLAGS = -I m4 -I gl/m4
21
22 pkgconfigdir = $(libdir)/pkgconfig
23 pkgconfig_DATA = libgsasl.pc
24
25 EXTRA_DIST = cfg.mk maint.mk
26
27 # Visual Studio project files.
28 EXTRA_DIST += win32/libgsasl.sln win32/libgsasl.vcproj          \
29         win32/include/ac-stdint.h win32/include/alloca.h        \
30         win32/include/idn-int.h win32/include/stdbool.h         \
31         win32/include/stdint.h win32/include/unistd.h           \
32         win32/include/config.h
33
34 SUBDIRS = po gl
35
36 # Plugins:
37 if EXTERNAL
38 SUBDIRS += external
39 endif
40
41 if ANONYMOUS
42 SUBDIRS += anonymous
43 endif
44
45 if PLAIN
46 SUBDIRS += plain
47 endif
48
49 if LOGIN
50 SUBDIRS += login
51 endif
52
53 if CRAM_MD5
54 SUBDIRS += cram-md5
55 endif
56
57 if DIGEST_MD5
58 SUBDIRS += digest-md5
59 endif
60
61 if SCRAM
62 SUBDIRS += scram
63 endif
64
65 if SAML20
66 SUBDIRS += saml20
67 endif
68
69 if OPENID20
70 SUBDIRS += openid20
71 endif
72
73 if NTLM
74 SUBDIRS += ntlm
75 endif
76
77 if GSSAPI
78 SUBDIRS += gssapi
79 endif
80
81 if GS2
82 SUBDIRS += gs2
83 endif
84
85 if SECURID
86 SUBDIRS += securid
87 endif
88
89 if KERBEROS_V5
90 SUBDIRS += kerberos_v5
91 endif
92
93 SUBDIRS += src tests gltests