Annotation of libwww/Robot/Makefile.am, revision 1.4

1.1       frystyk     1: ## Process this file with Automake to create Makefile.in.
                      2: 
1.3       frystyk     3: SUBDIRS = src User
1.2       frystyk     4: 
                      5: #      Some extra make directives
                      6: inc-recursive:
                      7:        for subdir in $(SUBDIRS); do            \
                      8:          target=`echo $@ | sed s/-recursive//`; \
                      9:          echo making $$target in $$subdir;     \
                     10:          (cd $$subdir && $(MAKE) $$target)     \
                     11:           || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
                     12:        done && test -z "$$fail"
                     13: inc : inc-recursive
                     14:        @echo Include files generated from hypertext.

Webmaster