]> git.meshlink.io Git - meshlink/blob - Makefile.am
Avoid allocating packet buffers unnecessarily.
[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 doc test examples
10
11 DIST_SUBDIRS = $(SUBDIRS)
12
13 ACLOCAL_AMFLAGS = -I m4 
14
15 EXTRA_DIST = \
16         COPYING.README \
17         README.android
18
19 ChangeLog:
20         git log > ChangeLog
21
22 astyle:
23         @astyle --version | grep -q "Version 3" || (echo 'ERROR: astyle version 3 required!' 1>&2 && exit 1)
24         astyle --options=.astylerc -nQ \
25                 src/*.[ch] \
26                 src/ed25519/e*.[ch] \
27                 examples/*.[ch] \
28                 examples/*.cc \
29                 `find test -name '*.[ch]'`