158551Skris# Makefile for gperf
258551Skris
3228060Sbapt# Copyright (C) 1989, 1992, 1993, 1998, 2002 Free Software Foundation, Inc.
4228060Sbapt# Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
5228060Sbapt# and Bruno Haible <bruno@clisp.org>.
658551Skris#
758551Skris# This file is part of GNU GPERF.
858551Skris#
958551Skris# GNU GPERF is free software; you can redistribute it and/or modify
1058551Skris# it under the terms of the GNU General Public License as published by
11228060Sbapt# the Free Software Foundation; either version 2, or (at your option)
1258551Skris# any later version.
1358551Skris#
1458551Skris# GNU GPERF is distributed in the hope that it will be useful,
1558551Skris# but WITHOUT ANY WARRANTY; without even the implied warranty of
1658551Skris# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1758551Skris# GNU General Public License for more details.
1858551Skris#
1958551Skris# You should have received a copy of the GNU General Public License
20228060Sbapt# along with this program; see the file COPYING.
21228060Sbapt# If not, write to the Free Software Foundation, Inc.,
22228060Sbapt# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
2358551Skris
2458551Skris#### Start of system configuration section. ####
2558551Skris
2658551Skris# Programs used by "make":
2758551SkrisRM = rm -f
2858551Skris@SET_MAKE@
2958551Skris
3058551Skris#### End of system configuration section. ####
3158551Skris
3258551SkrisSHELL = /bin/sh
3358551Skris
3458551Skrisall : force
3558551Skris	cd @subdir@; $(MAKE) all
3658551Skris
3758551Skrisinstall : force
3858551Skris	cd @subdir@; $(MAKE) install
3958551Skris
4058551Skrisinstalldirs : force
4158551Skris	cd @subdir@; $(MAKE) installdirs
4258551Skris
4358551Skrisuninstall : force
4458551Skris	cd @subdir@; $(MAKE) uninstall
4558551Skris
4658551Skrischeck : force
4758551Skris	cd @subdir@; $(MAKE) check
4858551Skris
4958551Skrismostlyclean : force
5058551Skris	cd @subdir@; $(MAKE) mostlyclean
5158551Skris
5258551Skrisclean : force
5358551Skris	cd @subdir@; $(MAKE) clean
5458551Skris
5558551Skrisdistclean : force
5658551Skris	cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
5758551Skris	$(RM) config.status config.log config.cache Makefile
5858551Skris
5958551Skrismaintainer-clean : force
6058551Skris	cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
6158551Skris	$(RM) config.status config.log config.cache Makefile
6258551Skris
6358551Skrisforce :
6458551Skris
65