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 44 45
|
## Process this file with automake to produce Makefile.in
## This file is maintained at http://git.mdcc.cx/caspar
# 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, 2011 Joost van Baal
## see booststrap for git2cl
ChangeLog: NEWS
git log --pretty --numstat --summary | sed 's/<joostvb[^>][^>]*>//g; s/<wsl[^>][^>]*>//g' | git2cl >ChangeLog
VERSION.m4 VERSION stamp.year stamp.month stamp.day: ChangeLog
$(top_srcdir)/setversion
CONFIGURE_DEPENDENCIES = VERSION.m4
## CONFIGURE_DEPENDENCIES = VERSION.m4
## Hook `dist-bzip2' to `dist'.
AUTOMAKE_OPTIONS = dist-xz 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_RHOST = beskar.mdcc.cx
MY_RDIR = $(MY_RHOST):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 ssh $(MY_RHOST) 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 stamp.day stamp.month stamp.year VERSION.m4 VERSION
DISTCLEANFILES = VERSION.m4 VERSION stamp.day stamp.month stamp.year
|