From 7152aae4ee2af0dc3520168891a0e72e84fba727 Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Tue, 17 Feb 2015 15:20:19 -0500 Subject: Initial commit --- Makefile.am | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Makefile.am (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..69c8869 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,21 @@ +aclocaldir = $(prefix)/share/aclocal + +# sorted, please +dist_aclocal_DATA = \ + autoconf-archive/m4/ax_append_compile_flags.m4 \ + autoconf-archive/m4/ax_append_flag.m4 \ + autoconf-archive/m4/ax_check_compile_flag.m4 \ + autoconf-archive/m4/ax_is_release.m4 \ + autoconf-archive/m4/ax_compiler_flags.m4 \ + autoconf-archive/m4/ax_compiler_flags_cflags.m4 \ + autoconf-archive/m4/ax_compiler_flags_cxxflags.m4 \ + autoconf-archive/m4/ax_compiler_flags_ldflags.m4 \ + autoconf-archive/m4/ax_compiler_flags_gir.m4 \ + autoconf-archive/m4/ax_require_defined.m4 \ + $(NULL) + +all-local: $(dist_aclocal_DATA) + cat $^ | grep -v '^#' | sed -e 's/\.*//' | grep -o '\' | sort | uniq > used + cat $^ | grep ^AC_DEFUN | grep -o '\' | sort | uniq > defined + diff -u used defined + rm -f used defined -- cgit v1.2.1