Avoid catch-22 with README.main not being distributed but having the
[gnupg.git] / common / Makefile.am
blobdd3661dac71cb2f8dd8957937cb46f1501bfda75
1 # Makefile for common gnupg modules
2 # Copyright (C) 2001, 2003, 2007 Free Software Foundation, Inc.
4 # This file is part of GnuPG.
6 # GnuPG is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
10
11 # GnuPG is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, see <http://www.gnu.org/licenses/>.
19 ## Process this file with automake to produce Makefile.in
21 EXTRA_DIST = mkstrtable.awk exaudit.awk exstatus.awk \
22              audit-events.h status-codes.h
24 noinst_LIBRARIES = libcommon.a libcommonpth.a libsimple-pwquery.a libgpgrl.a
25 noinst_PROGRAMS = $(module_tests) $(module_maint_tests)
26 TESTS = $(module_tests)
28 BUILT_SOURCES = audit-events.h status-codes.h
30 CLEANFILES = audit-events.h status-codes.h
32 AM_CPPFLAGS = -I$(top_srcdir)/gl -I$(top_srcdir)/intl
34 AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(KSBA_CFLAGS)
36 include $(top_srcdir)/am/cmacros.am
38 common_sources = \
39         common-defs.h \
40         util.h i18n.c i18n.h \
41         status.c status.h\
42         openpgpdefs.h \
43         gc-opt-flags.h \
44         keyserver.h \
45         sexp-parse.h \
46         tlv.c tlv.h \
47         init.c init.h \
48         sexputil.c \
49         sysutils.c sysutils.h \
50         homedir.c \
51         gettime.c \
52         yesno.c \
53         b64enc.c b64dec.c \
54         convert.c \
55         percent.c \
56         miscellaneous.c \
57         xasprintf.c \
58         xreadline.c \
59         membuf.c membuf.h \
60         iobuf.c iobuf.h \
61         ttyio.c ttyio.h \
62         asshelp.c asshelp.h \
63         exechelp.c exechelp.h \
64         signal.c \
65         estream.c estream.h estream-printf.c estream-printf.h \
66         audit.c audit.h \
67         srv.h \
68         dns-cert.c dns-cert.h \
69         pka.c pka.h \
70         http.c http.h \
71         localename.c \
72         session-env.c session-env.h \
73         helpfile.c
75 # Sources only useful without PTH.
76 without_pth_sources = \
77         get-passphrase.c get-passphrase.h
80 libcommon_a_SOURCES = $(common_sources) $(without_pth_sources)
81 if USE_DNS_SRV
82 libcommon_a_SOURCES += srv.c
83 endif
84 libcommon_a_CFLAGS = $(AM_CFLAGS) $(LIBASSUAN_CFLAGS) -DWITHOUT_GNU_PTH=1
86 libcommonpth_a_SOURCES = $(common_sources)
87 if USE_DNS_SRV
88 libcommonpth_a_SOURCES += srv.c
89 endif
90 libcommonpth_a_CFLAGS = $(AM_CFLAGS) $(LIBASSUAN_PTH_CFLAGS) $(PTH_CFLAGS)
92 libsimple_pwquery_a_SOURCES = \
93         simple-pwquery.c simple-pwquery.h asshelp.c asshelp.h
94 libsimple_pwquery_a_CFLAGS = $(AM_CFLAGS) $(LIBASSUAN_CFLAGS)
96 libgpgrl_a_SOURCES = \
97         gpgrlhelp.c
99 # Create the audit-events.h include file from audit.h
100 audit-events.h: Makefile mkstrtable.awk exaudit.awk audit.h
101         $(AWK) -f $(srcdir)/exaudit.awk $(srcdir)/audit.h \
102           | $(AWK) -f $(srcdir)/mkstrtable.awk -v textidx=3 -v nogettext=1 \
103                    -v namespace=eventstr_  >$@
105 # Create the status-codes.h include file from status.h
106 status-codes.h: Makefile mkstrtable.awk exstatus.awk status.h
107         $(AWK) -f $(srcdir)/exstatus.awk $(srcdir)/status.h \
108           | $(AWK) -f $(srcdir)/mkstrtable.awk -v textidx=3 -v nogettext=1 \
109                    -v namespace=statusstr_  >$@
113 # Module tests
115 module_tests = t-convert t-percent t-gettime t-sysutils t-sexputil t-exechelp \
116                t-session-env
117 module_maint_tests = t-helpfile t-b64
119 t_common_ldadd = libcommon.a ../jnlib/libjnlib.a ../gl/libgnu.a \
120                  $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) $(LIBINTL) $(LIBICONV)
122 t_convert_LDADD = $(t_common_ldadd)
123 t_percent_LDADD = $(t_common_ldadd)
124 t_gettime_LDADD = $(t_common_ldadd)
125 t_sysutils_LDADD = $(t_common_ldadd)
126 t_helpfile_LDADD = $(t_common_ldadd)
127 t_sexputil_LDADD = $(t_common_ldadd)
128 t_b64_LDADD = $(t_common_ldadd)
129 t_exechelp_LDADD = $(t_common_ldadd)
130 t_session_env_LDADD = $(t_common_ldadd)