#
#	fhist - file history and comparison tools
#	Copyright (C) 1990-1994, 1998, 1999, 2002, 2004 Peter Miller;
#	All rights reserved.
#
#	This program 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.
#
#	This program 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 this program; if not, write to the Free Software
#	Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
#
# MANIFEST: instructions to make, how to build the package
#

#
# directory containing the source
#
srcdir = @srcdir@
VPATH = @srcdir@

#
# the name of the install program to use
#
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@

#
# the name of the compiler to use
#
CC = @CC@

#
# The compiler flags to use
#
CFLAGS = @CFLAGS@

#
# The linker flags to use
#
LDFLAGS = @LDFLAGS@

#
# prefix for installation path
#
prefix = @prefix@
exec_prefix = @exec_prefix@

#
# where to put the library directory
#	(contains architecture-specific data, don't use exec_prefix)
#
libdir = $(RPM_BUILD_ROOT)@libdir@

#
# where to put the locale files
#	(contains architecture-specific data, don't use exec_prefix)
#
NLSDIR = $(RPM_BUILD_ROOT)@NLSDIR@

#
# where to put the shared directory
#	(contains architecture-neutral data, don't use exec_prefix)
#
datadir = $(RPM_BUILD_ROOT)@datadir@

#
# where to put the executables
#
bindir = $(RPM_BUILD_ROOT)@bindir@

#
# where to put the manuals
#
mandir = $(RPM_BUILD_ROOT)@mandir@

#
# Which yacc to use
#
YACC = @YACC@

#
# extra libraries required for your system
#
LIBS = @LIBS@

#
# shell to use to run tests and commands
#
SH = @SH@

#
# command used to construct libraries
#
AR = ar

#
# program used to place index within libraries
#
RANLIB = @RANLIB@

#
# The program used to compile the message catalogues.  Ideally, you
# should use the msgfmt in the GNU Gettext package.  (The SunOS one is
# brain-dead, and the Solaris one is hardly better.)
#
MSGFMT = @MSGFMT@
MSGCAT = @MSGCAT@

#
# The program used to format the documentation.
#
GROFF = @GROFF@

#
# where to find the soelim command
#
SOELIM = @SOELIM@

#
# Set MANLANG to English, to select the man pages to be installed into
# $(mandir).  If you want your manual pages in some other (supported)
# language, set it here.
#
# The man pages for all supported languages are also installed into
# $(libdir)/$(MANLANG)/manX/Y.X, so that it is only necessary to append
# $(libdir) to $MANPATH, if your man understands $LANG.
#
MANLANG = en

#
# Set HAVE_I18N to ``yes'' if your system has the gettext() system call
# and the msgfmt utility, or ``no'' if it does not.
#
HAVE_I18N = @internationalization@

#
# Set HAVE_GROFF to ``yes'' if your system has GNU Groff installed,
# or ``no'' if it does not.
#
HAVE_GROFF = @have_groff@

#
# Mess with the names of installed executables.
#
# The prefix is added to the front, the suffix is added to the back.
# Both are usually empty.  (The suffix does not include the executable
# file extension.)
#
PROGRAM_PREFIX = @PROGRAM_PREFIX@
PROGRAM_SUFFIX = @PROGRAM_SUFFIX@

#
# This is the file extension of executable files.
# It is empty for UNIX, and .EXE for the unmentionable one.
#
EXEEXT = @EXEEXT@

#
# This is the file extension of object files.
# It is .o for UNIX, and .O or .OBJ for the unmentionable one.
#
OBJEXT = @OBJEXT@

#
# This is the file extension of library files.  NO DOT.
#
LIBEXT = a

#
# You should not need to alter anything below this point.
#------------------------------------------------------------

default: all


syntax highlighted by Code2HTML, v. 0.9.1