]> git.meshlink.io Git - meshlink/blob - Makefile.am
Never automatically try to bind to ports >= 32768.
[meshlink] / Makefile.am
1 ## Process this file with automake to get Makefile.in
2
3 AUTOMAKE_OPTIONS = gnu
4
5 SUBDIRS = src test examples
6
7 DIST_SUBDIRS = $(SUBDIRS)
8
9 ACLOCAL_AMFLAGS = -I m4 
10
11 EXTRA_DIST = \
12         COPYING.README \
13         README.android \
14         $(DX_CONFIG)
15
16 @DX_RULES@
17
18 MOSTLYCLEANFILES = $(DX_CLEANFILES)
19
20 ChangeLog:
21         git log > ChangeLog
22
23 astyle:
24         @astyle --version | grep -q "Version 3" || (echo 'ERROR: astyle version 3 required!' 1>&2 && exit 1)
25         astyle --options=.astylerc -nQ \
26                 src/*.[ch] \
27                 src/ed25519/e*.[ch] \
28                 examples/*.[ch] \
29                 examples/*.cc \
30                 `find test -name '*.[ch]'`