]> git.ipfire.org Git - thirdparty/openvpn.git/blob - Makefile.am
unit_tests: remove includes for mock_msg.h
[thirdparty/openvpn.git] / Makefile.am
1 #
2 # OpenVPN -- An application to securely tunnel IP networks
3 # over a single UDP port, with support for SSL/TLS-based
4 # session authentication and key exchange,
5 # packet encryption, packet authentication, and
6 # packet compression.
7 #
8 # Copyright (C) 2002-2023 OpenVPN Inc <sales@openvpn.net>
9 # Copyright (C) 2010-2023 David Sommerseth <dazo@eurephia.org>
10 # Copyright (C) 2006-2012 Alon Bar-Lev <alon.barlev@gmail.com>
11 #
12 # This program is free software; you can redistribute it and/or modify
13 # it under the terms of the GNU General Public License version 2
14 # as published by the Free Software Foundation.
15 #
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License along
22 # with this program; if not, write to the Free Software Foundation, Inc.,
23 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #
25
26 ACLOCAL_AMFLAGS = -I m4
27
28 MAINTAINERCLEANFILES = \
29 config.log config.status \
30 $(srcdir)/Makefile.in \
31 $(srcdir)/config.h.in $(srcdir)/config.h.in~ $(srcdir)/configure \
32 $(srcdir)/install-sh $(srcdir)/ltmain.sh $(srcdir)/missing \
33 $(srcdir)/m4/libtool.m4 $(srcdir)/m4/lt~obsolete.m4 \
34 $(srcdir)/m4/ltoptions.m4 $(srcdir)/m4/ltsugar.m4 \
35 $(srcdir)/m4/ltversion.m4 \
36 $(srcdir)/depcomp $(srcdir)/aclocal.m4 \
37 $(srcdir)/config.guess $(srcdir)/config.sub
38
39 CLEANFILES = \
40 config-version.h tests/t_client.sh
41
42 EXTRA_DIST = \
43 contrib \
44 debug \
45 CMakeLists.txt \
46 CMakePresets.json \
47 config.h.cmake.in
48
49 .PHONY: config-version.h doxygen
50
51 if GIT_CHECKOUT
52 BUILT_SOURCES = \
53 config-version.h
54 endif
55
56 SUBDIRS = build distro include src sample doc tests
57
58 dist_doc_DATA = \
59 README \
60 README.mbedtls \
61 Changes.rst \
62 COPYRIGHT.GPL \
63 COPYING
64
65 dist_noinst_DATA = \
66 .gitignore \
67 .gitattributes \
68 CONTRIBUTING.rst \
69 PORTS \
70 README.cmake.md \
71 README.dco.md \
72 README.ec \
73 README.wolfssl
74
75 config-version.h:
76 @CONFIGURE_GIT_CHFILES="`GIT_DIR=\"$(top_srcdir)/.git\" $(GIT) diff-files --name-status -r --ignore-submodules --quiet -- || echo \"+\"`"; \
77 CONFIGURE_GIT_UNCOMMITTED="`GIT_DIR=\"$(top_srcdir)/.git\" $(GIT) diff-index --cached --quiet --ignore-submodules HEAD || echo \"*\"`"; \
78 CONFIGURE_GIT_REVISION="`GIT_DIR=\"$(top_srcdir)/.git\" $(GIT) rev-parse --symbolic-full-name HEAD | cut -d/ -f3-`/`GIT_DIR=\"$(top_srcdir)/.git\" $(GIT) rev-parse --short=16 HEAD`"; \
79 echo "#define CONFIGURE_GIT_REVISION \"$${CONFIGURE_GIT_REVISION}\"" > config-version.h.tmp; \
80 echo "#define CONFIGURE_GIT_FLAGS \"$${CONFIGURE_GIT_CHFILES}$${CONFIGURE_GIT_UNCOMMITTED}\"" >> config-version.h.tmp
81
82 @if ! [ -f config-version.h ] || ! cmp -s config-version.h.tmp config-version.h; then \
83 echo "replacing config-version.h"; \
84 mv config-version.h.tmp config-version.h; \
85 else \
86 rm -f config-version.h.tmp; \
87 fi
88
89 doxygen:
90 $(MAKE) -C doc/doxygen doxygen