OLD | NEW |
(Empty) | |
| 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 # GNU GPERF 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 2, or (at your option) |
| 12 # any later version. |
| 13 # |
| 14 # GNU GPERF 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; see the file COPYING. |
| 21 # If not, write to the Free Software Foundation, Inc., |
| 22 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ |
| 23 |
| 24 #### Start of system configuration section. #### |
| 25 |
| 26 # Programs used by "make": |
| 27 RM = rm -f |
| 28 |
| 29 |
| 30 #### End of system configuration section. #### |
| 31 |
| 32 SHELL = /bin/sh |
| 33 |
| 34 all : force |
| 35 cd lib; $(MAKE) all |
| 36 cd src; $(MAKE) all |
| 37 cd tests; $(MAKE) all |
| 38 cd doc; $(MAKE) all |
| 39 |
| 40 install : force |
| 41 cd lib; $(MAKE) install |
| 42 cd src; $(MAKE) install |
| 43 cd tests; $(MAKE) install |
| 44 cd doc; $(MAKE) install |
| 45 |
| 46 installdirs : force |
| 47 cd lib; $(MAKE) installdirs |
| 48 cd src; $(MAKE) installdirs |
| 49 cd tests; $(MAKE) installdirs |
| 50 cd doc; $(MAKE) installdirs |
| 51 |
| 52 uninstall : force |
| 53 cd lib; $(MAKE) uninstall |
| 54 cd src; $(MAKE) uninstall |
| 55 cd tests; $(MAKE) uninstall |
| 56 cd doc; $(MAKE) uninstall |
| 57 |
| 58 check : force |
| 59 cd lib; $(MAKE) check |
| 60 cd src; $(MAKE) check |
| 61 cd tests; $(MAKE) check |
| 62 cd doc; $(MAKE) check |
| 63 |
| 64 mostlyclean : force |
| 65 cd lib; $(MAKE) mostlyclean |
| 66 cd src; $(MAKE) mostlyclean |
| 67 cd tests; $(MAKE) mostlyclean |
| 68 cd doc; $(MAKE) mostlyclean |
| 69 |
| 70 clean : force |
| 71 cd lib; $(MAKE) clean |
| 72 cd src; $(MAKE) clean |
| 73 cd tests; $(MAKE) clean |
| 74 cd doc; $(MAKE) clean |
| 75 |
| 76 distclean : force |
| 77 cd lib; if test -f Makefile; then $(MAKE) distclean; fi |
| 78 cd src; if test -f Makefile; then $(MAKE) distclean; fi |
| 79 cd tests; if test -f Makefile; then $(MAKE) distclean; fi |
| 80 cd doc; if test -f Makefile; then $(MAKE) distclean; fi |
| 81 $(RM) config.status config.log config.cache Makefile |
| 82 |
| 83 maintainer-clean : force |
| 84 cd lib; if test -f Makefile; then $(MAKE) maintainer-clean; fi |
| 85 cd src; if test -f Makefile; then $(MAKE) maintainer-clean; fi |
| 86 cd tests; if test -f Makefile; then $(MAKE) maintainer-clean; fi |
| 87 cd doc; if test -f Makefile; then $(MAKE) maintainer-clean; fi |
| 88 $(RM) config.status config.log config.cache Makefile |
| 89 |
| 90 force : |
| 91 |
OLD | NEW |