##############################################################################
# This file is part of the VChat conference server distribution.             #
#                                                                            #
# Copyright (c) 1993 - 2006 Andreas S. Wetzel                                #
# All rights reserved.                                                       #
#                                                                            #
# The contents of this file are subject to the terms of the GNU General      #
# Public License (GPL), version 2 only ("the License") as published by the   #
# Free Software Foundation.                                                  #
#                                                                            #
# This Software comes with ABSOLUTELY NO WARRANTY.                           #
# See the License for more details. You should have received a copy of the   #
# License along with this distribution; See the file COPYING. If not, write  #
# to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,    #
# Boston, MA 02110-1301 USA.                                                 #
##############################################################################
 
# $Id: Makefile.in,v 1.3 2006/08/20 17:11:02 mickey Exp $

SHELL		= /bin/sh
INSTALL		= /usr/bin/install -c -o root -g wheel
RM		= /usr/local/bin/rm
ECHO		= /usr/local/bin/echo

prefix		= /usr/local
exec_prefix	= ${prefix}
srcdir		= .
topdir		= ..
mandir		= ${prefix}/man

DIRMODE		= 0755
MANMODE		= 0444
MAN8		= vserver.8 vchatctl.8
MANPAGES	= $(MAN8)





all:

depend:

clean:


installdirs:
		$(topdir)/mkinstalldirs -m $(DIRMODE) $(mandir)/man8

install:	installdirs
		@$(ECHO) "Installing manual pages in $(mandir)/man8"
		$(INSTALL) -m $(MANMODE) $(MAN8) $(mandir)/man8

uninstall:
		@$(ECHO) "Uninstalling manual pages in $(mandir)/man8"
		@for page in $(MAN8); do \
			$(RM) -f $(mandir)/man8/$$page ; \
		done

$(MANPAGES):	$(MANPAGES:=.in) $(topdir)/config.status
		(cd $(topdir) ; ./config.status)

Makefile:	Makefile.in $(topdir)/config.status
		(cd $(topdir) ; ./config.status)


.PHONY:		all depend clean installdirs install uninstall


syntax highlighted by Code2HTML, v. 0.9.1