181404Speter## Process this file with automake to produce Makefile.in
281404Speter# Master Makefile for the GNU Concurrent Versions System.
3128266Speter# Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
4128266Speter#               1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
5128266Speter#               Free Software Foundation, Inc.
681404Speter
781404Speter# This program is free software; you can redistribute it and/or modify
881404Speter# it under the terms of the GNU General Public License as published by
981404Speter# the Free Software Foundation; either version 2, or (at your option)
1081404Speter# any later version.
1181404Speter
1281404Speter# This program is distributed in the hope that it will be useful,
1381404Speter# but WITHOUT ANY WARRANTY; without even the implied warranty of
1481404Speter# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1581404Speter# GNU General Public License for more details.
1681404Speter
1781404Speter## Subdirectories to run make in for the primary targets.
1881404Speter# Unix source subdirs, where we'll want to run lint and etags:
1981404Speter# This is a legacy variable from b4 Automake
2081404SpeterUSOURCE_SUBDIRS = lib zlib diff src
2181404Speter# All other subdirs:
2281404SpeterSUBDIRS = $(USOURCE_SUBDIRS) man doc contrib tools \
2381404Speter	windows-NT os2 emx vms
2481404Speter
2581404SpeterEXTRA_DIST = \
2681404Speter	.cvsignore \
2781404Speter	BUGS \
2881404Speter	ChangeLog.zoo \
2981404Speter	DEVEL-CVS \
3081404Speter	FAQ \
3181404Speter	HACKING \
3281404Speter	MINOR-BUGS \
3381404Speter	PROJECTS \
3481404Speter	README.VMS \
3581404Speter	TESTS \
3681404Speter	build.com \
3781404Speter	cvs-format.el \
38130303Speter	cvsnt.dep \
3981404Speter	cvsnt.dsp \
4081404Speter	cvsnt.dsw \
41102840Speter	cvsnt.mak \
42128266Speter	cvs.spec \
43128266Speter	mktemp.sh
4481404Speter
45102840Speter
46102840Speter## MAINTAINER Targets
47102840Speter
48102840Speter.PHONY: localcheck remotecheck
49102840Speterlocalcheck remotecheck: all
5081404Speter	cd src && $(MAKE) $(AM_MAKEFLAGS) "$@"
5181404Speter
5281404Speter.PHONY: doc
5381404Speterdoc:
5481404Speter	cd doc && $(MAKE) $(AM_MAKEFLAGS) "$@"
5581404Speter
5681404Speter# for backwards compatibility with the old makefiles
5781404Speter.PHONY: realclean
5881404Speterrealclean: maintainer-clean
59