### -*-makefile-*- ### ### Building the distribution ### ### (c) 1997 Mark Wooding ### ###----- Licensing notice --------------------------------------------------- ### ### This file is part of the Common Files Distribution (`common') ### ### `Common' is free software; you can redistribute it and/or modify ### it under the terms of the GNU General Public License as published by ### the Free Software Foundation; either version 2 of the License, or ### (at your option) any later version. ### ### `Common' is distributed in the hope that it will be useful, ### but WITHOUT ANY WARRANTY; without even the implied warranty of ### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ### GNU General Public License for more details. ### ### You should have received a copy of the GNU General Public License ### along with `common'; if not, write to the Free Software Foundation, ### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. bin_SCRIPTS = pkgdata_SCRIPTS = dist_pkgdata_SCRIPTS = pkgdata_DATA = dist_pkgdata_DATA = EXTRA_DIST = CLEANFILES = ###-------------------------------------------------------------------------- ### Handy variables. confsubst = $(srcdir)/confsubst.in mkdir_p = $(srcdir)/config/install-sh -d V_SUBST = $(V_SUBST_$(V)) V_SUBST_ = $(V_SUBST_$(AM_DEFAULT_VERBOSITY)) V_SUBST_0 = @echo " SUBST $@"; SUBST = $(V_SUBST)$(confsubst) ###-------------------------------------------------------------------------- ### Main scripts. ## mklinks bin_SCRIPTS += mklinks CLEANFILES += mklinks EXTRA_DIST += mklinks.in mklinks: mklinks.in Makefile $(SUBST) $(srcdir)/mklinks.in >$@.new \ pkgdatadir=$(pkgdatadir) VERSION=$(VERSION) $(AM_V_at)chmod +x $@.new $(AM_V_at)mv $@.new $@ ## findlinks bin_SCRIPTS += findlinks CLEANFILES += findlinks EXTRA_DIST += findlinks.in findlinks: findlinks.in Makefile $(SUBST) $(srcdir)/findlinks.in >$@.new \ pkgdatadir=$(pkgdatadir) VERSION=$(VERSION) $(AM_V_at)chmod +x $@.new $(AM_V_at)mv $@.new $@ ## mdw-setup bin_SCRIPTS += mdw-setup EXTRA_DIST += mdw-setup ###-------------------------------------------------------------------------- ### Files to install. ## Licences. dist_pkgdata_DATA += COPYING COPYING.LIB dist_pkgdata_DATA += gpl.tex lgpl.tex gpl.texi lgpl.texi ## Documentation. dist_pkgdata_DATA += INSTALL dist_pkgdata_DATA += texinice.tex ## Useful code. dist_pkgdata_DATA += mdwopt.c mdwopt.h dist_pkgdata_DATA += getdate.y getdate.h ## Scripts. dist_pkgdata_SCRIPTS += install-ac dist_pkgdata_SCRIPTS += maninst ## Python support stuff. dist_pkgdata_SCRIPTS += mdwsetup.py ## confsubst pkgdata_SCRIPTS += confsubst CLEANFILES += confsubst EXTRA_DIST += confsubst.in confsubst: confsubst.in Makefile $(SUBST) $(srcdir)/confsubst.in >$@.new VERSION=$(VERSION) $(AM_V_at)chmod +x $@.new $(AM_V_at)mv $@.new $@ ## auto-version pkgdata_SCRIPTS += auto-version CLEANFILES += auto-version EXTRA_DIST += auto-version.in auto-version: auto-version.in Makefile $(SUBST) $(srcdir)/auto-version.in >$@.new VERSION=$(VERSION) $(AM_V_at)chmod +x $@.new $(AM_V_at)mv $@.new $@ ## Testsuites. dist_pkgdata_DATA += autotest.am dist_pkgdata_DATA += testsuite.at ## Autoconf snippets. EXTRA_DIST += aclocal.glob install-data-hook:: $(mkdir_p) $(DESTDIR)$(aclocaldir) $(srcdir)/install-ac install \ $(srcdir)/aclocal.glob $(DESTDIR)$(aclocaldir) uninstall-hook:: $(srcdir)/install-ac rm \ $(srcdir)/aclocal.glob $(DESTDIR)$(aclocaldir) ###-------------------------------------------------------------------------- ### Documentation. info_TEXINFOS = common.texi ###-------------------------------------------------------------------------- ### Other special tweaks. ## Make `make distcheck' work. DISTCHECK_CONFIGURE_FLAGS = \ --with-aclocaldir='$${prefix}/share/aclocal' ## Distribute the release number. dist-hook:: echo $(VERSION) >$(distdir)/RELEASE ###-------------------------------------------------------------------------- ### Debian. EXTRA_DIST += debian/compat EXTRA_DIST += debian/control EXTRA_DIST += debian/copyright EXTRA_DIST += debian/rules EXTRA_DIST += debian/changelog ###----- That's all, folks --------------------------------------------------