1 # Makefile for common gnupg modules
2 # Copyright (C) 2001, 2003, 2007, 2010 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.
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.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, see <https://www.gnu.org/licenses/>.
19 ## Process this file with automake to produce Makefile.in
21 EXTRA_DIST = mkstrtable.awk exaudit.awk exstatus.awk ChangeLog-2011 \
22 audit-events.h status-codes.h ChangeLog.jnlib \
23 ChangeLog-2011.include w32info-rc.h.in gnupg.ico
25 noinst_LIBRARIES = libcommon.a libcommonpth.a libgpgrl.a
27 noinst_LIBRARIES += libsimple-pwquery.a
29 noinst_PROGRAMS = $(module_tests) $(module_maint_tests)
30 TESTS = $(module_tests)
32 BUILT_SOURCES = audit-events.h status-codes.h
34 MAINTAINERCLEANFILES = audit-events.h status-codes.h
38 AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(LIBASSUAN_CFLAGS) $(KSBA_CFLAGS)
40 include $(top_srcdir)/am/cmacros.am
45 util.h utilproto.h fwddecl.h i18n.c i18n.h \
46 types.h host2net.h dynload.h w32help.h \
47 mapstrings.c stringhelp.c stringhelp.h \
49 utf8conv.c utf8conv.h \
50 argparse.c argparse.h \
53 mischelp.c mischelp.h \
63 sysutils.c sysutils.h \
67 b64enc.c b64dec.c zb32.c zb32.h \
70 mbox-util.c mbox-util.h \
75 ccparray.c ccparray.h \
78 asshelp.c asshelp2.c asshelp.h \
83 session-env.c session-env.h \
86 ssh-utils.c ssh-utils.h \
91 exectool.c exectool.h \
92 server-help.c server-help.h \
93 name-value.c name-value.h \
97 common_sources += w32-reg.c
100 # To make the code easier to read we have split home some code into
101 # separate source files.
104 common_sources += exechelp-w32ce.c
106 common_sources += exechelp-w32.c
109 common_sources += exechelp-posix.c
112 # Sources only useful without NPTH.
113 without_npth_sources = \
114 get-passphrase.c get-passphrase.h
116 # Sources only useful with NPTH.
117 with_npth_sources = \
118 call-gpg.c call-gpg.h
120 libcommon_a_SOURCES = $(common_sources) $(without_npth_sources)
121 libcommon_a_CFLAGS = $(AM_CFLAGS) $(LIBASSUAN_CFLAGS) -DWITHOUT_NPTH=1
123 libcommonpth_a_SOURCES = $(common_sources) $(with_npth_sources)
124 libcommonpth_a_CFLAGS = $(AM_CFLAGS) $(LIBASSUAN_CFLAGS) $(NPTH_CFLAGS)
126 if !HAVE_W32CE_SYSTEM
127 libsimple_pwquery_a_SOURCES = \
128 simple-pwquery.c simple-pwquery.h asshelp.c asshelp.h
129 libsimple_pwquery_a_CFLAGS = $(AM_CFLAGS) $(LIBASSUAN_CFLAGS)
132 libgpgrl_a_SOURCES = \
136 # Note: Due to the dependency on Makefile, the file will always be
137 # rebuilt, so we allow this only in maintainer mode.
139 # Create the audit-events.h include file from audit.h
140 # Note: We create the target file in the source directory because it
141 # is a distributed built source. If we would not do that we may end
142 # up with two files and then it is not clear which version of the
143 # files will be picked up.
144 audit-events.h: Makefile.am mkstrtable.awk exaudit.awk audit.h
145 $(AWK) -f $(srcdir)/exaudit.awk $(srcdir)/audit.h \
146 | $(AWK) -f $(srcdir)/mkstrtable.awk -v textidx=3 -v nogettext=1 \
147 -v namespace=eventstr_ > $(srcdir)/audit-events.h
149 # Create the status-codes.h include file from status.h
150 status-codes.h: Makefile.am mkstrtable.awk exstatus.awk status.h
151 $(AWK) -f $(srcdir)/exstatus.awk $(srcdir)/status.h \
152 | $(AWK) -f $(srcdir)/mkstrtable.awk -v textidx=3 -v nogettext=1 \
153 -v namespace=statusstr_ > $(srcdir)/status-codes.h
159 module_tests = t-stringhelp t-timestuff \
160 t-convert t-percent t-gettime t-sysutils t-sexputil \
161 t-session-env t-openpgp-oid t-ssh-utils \
162 t-mapstrings t-zb32 t-mbox-util t-iobuf t-strlist \
163 t-name-value t-ccparray t-recsel
164 if !HAVE_W32CE_SYSTEM
165 module_tests += t-exechelp t-exectool
168 module_tests += t-w32-reg
172 module_maint_tests = t-helpfile t-b64
177 t_extra_src = t-support.h
179 t_common_cflags = $(KSBA_CFLAGS) $(LIBGCRYPT_CFLAGS) \
180 $(LIBASSUAN_CFLAGS) $(GPG_ERROR_CFLAGS) $(INCICONV)
181 t_common_ldadd = libcommon.a \
182 $(LIBGCRYPT_LIBS) $(LIBASSUAN_LIBS) $(GPG_ERROR_LIBS) \
183 $(LIBINTL) $(LIBICONV)
187 t_stringhelp_SOURCES = t-stringhelp.c $(t_extra_src)
188 t_stringhelp_LDADD = $(t_common_ldadd)
190 t_timestuff_SOURCES = t-timestuff.c $(t_extra_src)
191 t_timestuff_LDADD = $(t_common_ldadd)
193 t_convert_LDADD = $(t_common_ldadd)
194 t_percent_LDADD = $(t_common_ldadd)
195 t_gettime_LDADD = $(t_common_ldadd)
196 t_sysutils_LDADD = $(t_common_ldadd)
197 t_helpfile_LDADD = $(t_common_ldadd)
198 t_sexputil_LDADD = $(t_common_ldadd)
199 t_b64_LDADD = $(t_common_ldadd)
200 t_exechelp_LDADD = $(t_common_ldadd)
201 t_exectool_LDADD = $(t_common_ldadd)
202 t_session_env_LDADD = $(t_common_ldadd)
203 t_openpgp_oid_LDADD = $(t_common_ldadd)
204 t_ssh_utils_LDADD = $(t_common_ldadd)
205 t_mapstrings_LDADD = $(t_common_ldadd)
207 t_zb32_SOURCES = t-zb32.c $(t_extra_src)
208 t_zb32_LDADD = $(t_common_ldadd)
210 t_mbox_util_LDADD = $(t_common_ldadd)
211 t_iobuf_LDADD = $(t_common_ldadd)
212 t_strlist_LDADD = $(t_common_ldadd)
213 t_name_value_LDADD = $(t_common_ldadd)
214 t_ccparray_LDADD = $(t_common_ldadd)
215 t_recsel_LDADD = $(t_common_ldadd)
217 # System specific test
219 t_w32_reg_SOURCES = t-w32-reg.c $(t_extra_src)
220 t_w32_reg_LDADD = $(t_common_ldadd)
223 # All programs should depend on the created libs.
224 $(PROGRAMS) : libcommon.a libcommonpth.a