]> git.ipfire.org Git - thirdparty/openvpn.git/blob - Makefile.am
Allow unit tests to fall back to hard coded location
[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 ltrc.inc \
46 CMakeLists.txt \
47 CMakePresets.json \
48 config.h.cmake.in
49
50 .PHONY: config-version.h doxygen
51
52 if GIT_CHECKOUT
53 BUILT_SOURCES = \
54 config-version.h
55 endif
56
57 SUBDIRS = distro include src sample doc tests
58
59 dist_doc_DATA = \
60 README \
61 README.mbedtls \
62 Changes.rst \
63 COPYRIGHT.GPL \
64 COPYING
65
66 dist_noinst_DATA = \
67 .gitignore \
68 .gitattributes \
69 CONTRIBUTING.rst \
70 PORTS \
71 README.cmake.md \
72 README.dco.md \
73 README.ec \
74 README.wolfssl
75
76 config-version.h:
77 @CONFIGURE_GIT_CHFILES="`GIT_DIR=\"$(top_srcdir)/.git\" $(GIT) diff-files --name-status -r --ignore-submodules --quiet -- || echo \"+\"`"; \
78 CONFIGURE_GIT_UNCOMMITTED="`GIT_DIR=\"$(top_srcdir)/.git\" $(GIT) diff-index --cached --quiet --ignore-submodules HEAD || echo \"*\"`"; \
79 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`"; \
80 echo "#define CONFIGURE_GIT_REVISION \"$${CONFIGURE_GIT_REVISION}\"" > config-version.h.tmp; \
81 echo "#define CONFIGURE_GIT_FLAGS \"$${CONFIGURE_GIT_CHFILES}$${CONFIGURE_GIT_UNCOMMITTED}\"" >> config-version.h.tmp
82
83 @if ! [ -f config-version.h ] || ! cmp -s config-version.h.tmp config-version.h; then \
84 echo "replacing config-version.h"; \
85 mv config-version.h.tmp config-version.h; \
86 else \
87 rm -f config-version.h.tmp; \
88 fi
89
90 doxygen:
91 $(MAKE) -C doc/doxygen doxygen