From 1fcc3c66508e1e232768ae6a17396c2e44c669d0 Mon Sep 17 00:00:00 2001 From: Karl MacMillan Date: Wed, 17 Oct 2007 15:46:39 -0400 Subject: Autotool ipa-client - patch from William Jon McCann --- ipa-client/Makefile.am | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 ipa-client/Makefile.am (limited to 'ipa-client/Makefile.am') diff --git a/ipa-client/Makefile.am b/ipa-client/Makefile.am new file mode 100644 index 000000000..caabffe15 --- /dev/null +++ b/ipa-client/Makefile.am @@ -0,0 +1,63 @@ +# This file will be processed with automake-1.7 to create Makefile.in + +AUTOMAKE_OPTIONS = 1.7 + +NULL = + +SUBDIRS = \ + firefox \ + ipaclient \ + ipa-install \ + $(NULL) + +EXTRA_DIST = \ + freeipa-client.spec \ + COPYING \ + AUTHORS \ + INSTALL \ + README \ + HACKING \ + NEWS \ + ChangeLog \ + $(NULL) + +DISTCLEANFILES = \ + $(NULL) + +MAINTAINERCLEANFILES = \ + *~ \ + intltool-*.in \ + compile \ + configure \ + INSTALL \ + install-sh \ + missing \ + mkinstalldirs \ + config.guess \ + ltmain.sh \ + config.sub \ + depcomp \ + Makefile.in \ + config.h.* \ + aclocal.m4 \ + $(NULL) + +# Creating ChangeLog from hg log (taken from cairo/Makefile.am): + +ChangeLog: $(srcdir)/ChangeLog + +$(srcdir)/ChangeLog: + @if test -d "$(srcdir)/../.hg"; then \ + (cd "$(srcdir)" && \ + ./missing --run hg log --verbose) | fmt --split-only > $@.tmp \ + && mv -f $@.tmp $@ \ + || ($(RM) $@.tmp; \ + echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \ + (test -f $@ || echo hg log is required to generate this file >> $@)); \ + else \ + test -f $@ || \ + (echo A hg checkout and hg -log is required to generate ChangeLog >&2 && \ + echo A hg checkout and hg log is required to generate this file >> $@); \ + fi + +.PHONY: ChangeLog $(srcdir)/ChangeLog -- cgit