]> 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 if CATTA
6 MAYBE_CATTA = catta
7 endif
8
9 SUBDIRS = $(MAYBE_CATTA) src test examples
10
11 DIST_SUBDIRS = $(SUBDIRS)
12
13 ACLOCAL_AMFLAGS = -I m4 
14
15 EXTRA_DIST = \
16         COPYING.README \
17         README.android \
18         $(DX_CONFIG)
19
20 @DX_RULES@
21
22 MOSTLYCLEANFILES = $(DX_CLEANFILES)
23
24 ChangeLog:
25         git log > ChangeLog
26
27 astyle:
28         @astyle --version | grep -q "Version 3" || (echo 'ERROR: astyle version 3 required!' 1>&2 && exit 1)
29         astyle --options=.astylerc -nQ \
30                 src/*.[ch] \
31                 src/ed25519/e*.[ch] \
32                 examples/*.[ch] \
33                 examples/*.cc \
34                 `find test -name '*.[ch]'`