X-Git-Url: http://git.meshlink.io/?p=meshlink;a=blobdiff_plain;f=Makefile.am;h=5a8a38df39732e9d95152eec4eaf3c7e465f63e9;hp=eef8e4e831586793db00bfae9be8f7ab9b1d9d38;hb=4b6c01b1d5383b1a7417244a31ad4652aab2d5db;hpb=ca373c61944a7bd2fe26faf081edea136104d326 diff --git a/Makefile.am b/Makefile.am index eef8e4e8..5a8a38df 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,24 +1,34 @@ ## Process this file with automake to get Makefile.in -AUTOMAKE_OPTIONS = gnits +AUTOMAKE_OPTIONS = gnu -SUBDIRS = m4 lib cipher src doc redhat +if CATTA +MAYBE_CATTA = catta +endif -ACLOCAL_AMFLAGS = +SUBDIRS = $(MAYBE_CATTA) src test examples -EXTRA_DIST = +DIST_SUBDIRS = $(SUBDIRS) -CVS_CREATED = configure aclocal.m4 config.h.in config.guess \ - config.sub install-sh ltconfig ltmain.sh missing mkinstalldirs \ - stamp-h.in m4/Makefile.am +ACLOCAL_AMFLAGS = -I m4 + +EXTRA_DIST = \ + COPYING.README \ + README.android \ + $(DX_CONFIG) + +@DX_RULES@ + +MOSTLYCLEANFILES = $(DX_CLEANFILES) ChangeLog: - rm -f ChangeLog - rcs2log -u "zarq Ivo Timmermans itimmermans@bigfoot.com" \ - -u "guus Guus Sliepen guus@sliepen.warande.net" | \ - sed -e 's,/home/CVS/tinc/cabal/,,g' > $@ - -cvs-clean: maintainer-clean - for f in $(CVS_CREATED) `find -name Makefile.in` ; do\ - rm -f "$$f"; \ - done + git log > ChangeLog + +astyle: + @astyle --version | grep -q "Version 3" || (echo 'ERROR: astyle version 3 required!' 1>&2 && exit 1) + astyle --options=.astylerc -nQ \ + src/*.[ch] \ + src/ed25519/e*.[ch] \ + examples/*.[ch] \ + examples/*.cc \ + `find test -name '*.[ch]'`