1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
## Process this file with automake to produce Makefile.in
## $Id: Makefile.am,v 1.16 2007-07-29 09:41:21 joostvb Exp $
# This script is free software; you can distribute it and/or modify it
# under the terms of the GNU GPL. See the file COPYING.
## Copyright (C) 2003, 2004, 2005, 2006, 2010 Joost van Baal
## see booststrap for git2cl
ChangeLog: NEWS
git log --pretty --numstat --summary | sed 's/<[^>][^>]*>//g' | git2cl >ChangeLog
VERSION.m4 VERSION stamp.year stamp.month stamp.day: ChangeLog
./setversion
CONFIGURE_DEPENDENCIES = VERSION.m4
## Hook `dist-bzip2' to `dist'.
AUTOMAKE_OPTIONS = dist-bzip2 check-news
## used in make dist[check]
VERSION = @PACKAGE_VERSION@
PACKAGE = @PACKAGE_TARNAME@
SUBDIRS = doc mk sgml script
docdir = $(datadir)/doc/$(PACKAGE)
doc_DATA = AUTHORS COPYING ChangeLog README THANKS TODO NEWS
## local targets
MY_RDIR = opal:www/mdcc.cx/pub/caspar/
sign:
for i in $(DIST_ARCHIVES); do echo "gpg --armor --detach-sign $$i"; gpg --armor --detach-sign $$i; done
publish:
for i in $(DIST_ARCHIVES); do echo "scp $$i $$i.asc $(MY_RDIR)"; scp $$i $$i.asc $(MY_RDIR); done
@echo now run update-tar-symlinks caspar
## Only files from the current directory or from subdirectory which
## don't have their own Makefile.am should be listed here.
EXTRA_DIST = bootstrap setversion VERSION.m4 VERSION
|