Edit

kc3-lang/automake/subdirs.am

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-12-08 21:05:11
    Hash : 12014054
    Message : installs now 'quiet'

  • subdirs.am
  • ## automake - create Makefile.in from Makefile.am
    ## Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
    
    ## 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, 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-1307, USA.
    # This directory's subdirectories are mostly independent; you can cd
    # into them and run `make' without going through this Makefile.
    # To change the values of `make' variables: instead of editing Makefiles,
    # (1) if the variable is set in `config.status', edit `config.status'
    #     (which will cause the Makefiles to be regenerated when you run `make');
    # (2) otherwise, pass the desired values on the `make' command line.
    
    @SET_MAKE@
    
    all-recursive install-data-recursive install-exec-recursive \
    installdirs-recursive install-recursive uninstall-recursive @INSTALLINFO@ \
    check-recursive installcheck-recursive info-recursive dvi-recursive \
    mostlyclean-recursive clean-recursive distclean-recursive \
    maintainer-clean-recursive:
    	@for subdir in $(SUBDIRS); do \
    	  target=`echo $@ | sed s/-recursive//`; \
    	  echo "Making $$target in $$subdir"; \
    	  (cd $$subdir && $(MAKE) $$target) \
    ## This trick allows "-k" to keep its natural meaning when running a
    ## recursive rule.
    	   || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
    	done && test -z "$$fail"