Makefile.in revision 58551
1# Makefile for gperf
2
3# Copyright (C) 1989, 1992, 1993, 1998 Free Software Foundation, Inc.
4# written by Douglas C. Schmidt (schmidt@ics.uci.edu)
5#
6# This file is part of GNU GPERF.
7#
8# GNU GPERF is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 1, or (at your option)
11# any later version.
12#
13# GNU GPERF is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with GNU GPERF; see the file COPYING.  If not, write to
20# Software Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
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