Edit

kc3-lang/automake/subdirs.am

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1995-11-29 21:10:29
    Hash : 5a104483
    Message : (RECURSIVE): Removed uninstall-data-recursive and uninstall-exec-recursive. Added installdirs-recursive.

  • subdirs.am
  • # 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@
    
    RECURSIVE = all-recursive install-data-recursive install-exec-recursive \
    installdirs-recursive install-recursive uninstall-recursive \
    check-recursive info-recursive dvi-recursive mostlyclean-recursive \
    clean-recursive distclean-recursive maintainer-clean-recursive
    
    $(RECURSIVE):
    	for subdir in $(SUBDIRS); do		\
    	  target=`echo $@ | sed s/-recursive//`; \
    	  echo making $$target in $$subdir;	\
    	  (cd $$subdir; $(MAKE) $$target)	\
    	   || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
    	done && test -z "$$fail"