Symlink README to README.md when running make dist.
[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.md 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 README.md
25         ln -sf README.md README
26
27 CLEANFILES = README
28
29 ChangeLog:
30         (cd $(srcdir) && git log) > ChangeLog
31
32 deb:
33         dpkg-buildpackage -rfakeroot
34
35 rpm: dist
36         cp $(distdir).tar.gz /usr/src/redhat/SOURCES/
37         cp redhat/tinc.spec /usr/src/redhat/SOURCES/
38         cd /usr/src/redhat/SOURCES/ && rpm -bb tinc.spec
39
40 release:
41         rm -f ChangeLog
42         $(MAKE) ChangeLog
43         echo "Please edit the NEWS file now..."
44         /usr/bin/editor $(srcdir)/NEWS
45         $(MAKE) dist
46
47 astyle:
48         astyle --options=.astylerc -nQ src/*.[ch] src/*/*.[ch]