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

1.1       frystyk     1: ## Process this file with Automake to create Makefile.in.
                      2: 
                      3: DOC = User
                      4: EXP = Examples
                      5: 
                      6: EXAMPLES =
                      7: 
                      8: DOCS = *.html \
                      9:        `find $(DOC) -follow \( -name \*.html -o -name \*.gif \) -print` \
                     10:        $(DOC)/Patch/*.fix
                     11: 
                     12: DIST_OTHER = \
                     13:        $(DOCS)
                     14: 
                     15: SUBDIRS = src
1.2     ! frystyk    16: 
        !            17: #      Some extra make directives
        !            18: inc-recursive:
        !            19:        for subdir in $(SUBDIRS); do            \
        !            20:          target=`echo $@ | sed s/-recursive//`; \
        !            21:          echo making $$target in $$subdir;     \
        !            22:          (cd $$subdir && $(MAKE) $$target)     \
        !            23:           || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
        !            24:        done && test -z "$$fail"
        !            25: inc : inc-recursive
        !            26:        @echo Include files generated from hypertext.

Webmaster