1# Makefile for gperf
2
3# Copyright (C) 1989, 1992, 1993, 1998, 2002 Free Software Foundation, Inc.
4# Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
5# and Bruno Haible <bruno@clisp.org>.
6#
7# This file is part of GNU GPERF.
8#
9# This program is free software: you can redistribute it and/or modify
10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation; either version 3 of the License, or
12# (at your option) any later version.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program.  If not, see <http://www.gnu.org/licenses/>.
21
22#### Start of system configuration section. ####
23
24# Programs used by "make":
25RM = rm -f
26@SET_MAKE@
27
28#### End of system configuration section. ####
29
30SHELL = /bin/sh
31
32all : force
33	cd @subdir@; $(MAKE) all
34
35install : force
36	cd @subdir@; $(MAKE) install
37
38installdirs : force
39	cd @subdir@; $(MAKE) installdirs
40
41uninstall : force
42	cd @subdir@; $(MAKE) uninstall
43
44check : force
45	cd @subdir@; $(MAKE) check
46
47mostlyclean : force
48	cd @subdir@; $(MAKE) mostlyclean
49
50clean : force
51	cd @subdir@; $(MAKE) clean
52
53distclean : force
54	cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
55	$(RM) config.status config.log config.cache Makefile
56
57maintainer-clean : force
58	cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
59	$(RM) config.status config.log config.cache Makefile
60
61force :
62
63