GitHub CI: check project for warnings with clang/gcc.
[tinc] / Makefile.am
1 ## Process this file with automake to get Makefile.in
2
3 AUTOMAKE_OPTIONS = gnu
4
5 SUBDIRS =  src doc test systemd bash_completion.d
6
7 ACLOCAL_AMFLAGS = -I m4
8
9 EXTRA_DIST = COPYING.README README.android SECURITY.md
10
11 @CODE_COVERAGE_RULES@
12
13 .PHONY: extra
14 extra:
15         $(MAKE) -C $(srcdir)/src extra
16         $(MAKE) -C $(srcdir)/test extra
17
18 # If git describe works, force autoconf to run in order to make sure we have the
19 # current version number from git in the resulting configure script.
20 configure-version:
21         -cd $(srcdir) && git describe && autoconf --force
22
23 # Triggering the README target means we are building a distribution (make dist).
24 README: configure-version
25
26 ChangeLog:
27         (cd $(srcdir) && git log) > ChangeLog
28
29 deb:
30         dpkg-buildpackage -rfakeroot
31
32 rpm: dist
33         cp $(distdir).tar.gz /usr/src/redhat/SOURCES/
34         cp redhat/tinc.spec /usr/src/redhat/SOURCES/
35         cd /usr/src/redhat/SOURCES/ && rpm -bb tinc.spec
36
37 release:
38         rm -f ChangeLog
39         $(MAKE) ChangeLog
40         echo "Please edit the NEWS file now..."
41         /usr/bin/editor $(srcdir)/NEWS
42         $(MAKE) dist
43
44 astyle:
45         astyle --options=.astylerc -nQ src/*.[ch] src/*/*.[ch]