Annotation of libwww/Makefile.am, revision 1.2

1.1       frystyk     1: ## Process this file with Automake to create Makefile.in.
                      2: 
                      3: ICON= $(top_srcdir)/Icons
                      4: FTP = /afs/w3.org/devel/Dist/$(PROD)
                      5: 
                      6: legal : $(LEGAL)
                      7: 
                      8: #      .h files are distributed but originally are made from the
                      9: #      self-documenting hypertext files.
                     10: SUFFIXES = .h .html .txt
                     11: 
                     12: .html.txt:
                     13:        www -n -p $< > $@
                     14: 
                     15: .html.h:
                     16:        www -w90 -na -p -to text/x-c $(srcdir)/$*.html > $(srcdir)/$*.h
                     17: 
                     18: #      Some extra make directives
1.2     ! frystyk    19: inc-recursive:
        !            20:        for subdir in $(SUBDIRS); do            \
        !            21:          target=`echo $@ | sed s/-recursive//`; \
        !            22:          echo making $$target in $$subdir;     \
        !            23:          (cd $$subdir && $(MAKE) $$target)     \
        !            24:           || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
        !            25:        done && test -z "$$fail"
        !            26: inc : inc-recursive
1.1       frystyk    27:        @echo Include files generated from hypertext.
                     28: 
                     29: all-local : inc legal
                     30: 
                     31: LEGAL =        $(top_srcdir)/../WELCOME \
                     32:        $(top_srcdir)/README \
                     33:        $(top_srcdir)/COPYRIGH \
                     34:        $(top_srcdir)/PATCHES \
                     35:        $(top_srcdir)/CERN
                     36: 
                     37: ICONS = $(top_srcdir)/Icons/WWW/Bug48x.gif \
                     38:        $(top_srcdir)/Icons/WWW/Lib48x.gif \
                     39:        $(top_srcdir)/Icons/WWW/w3c_48x48.gif \
                     40:        $(top_srcdir)/Icons/WWW/Platform48x.gif \
                     41:        $(top_srcdir)/Icons/WWW/design48x.gif \
                     42:        $(top_srcdir)/Icons/WWW/doc48x.gif \
                     43:        $(top_srcdir)/Icons/WWW/guide48x.gif \
                     44:        $(top_srcdir)/Icons/WWW/internals48x.gif \
                     45:        $(top_srcdir)/Icons/WWW/install48x.gif \
                     46:        $(top_srcdir)/Icons/WWW/relnotes48x.gif \
                     47:        $(top_srcdir)/Icons/WWW/bullet.gif \
                     48:        $(top_srcdir)/Icons/32x32/smiley.gif \
                     49:        $(top_srcdir)/Icons/32x32/caution.gif
                     50: 
                     51: DIST_OTHER = \
                     52:        $(LEGAL) \
                     53:        $(ICONS)
                     54: 
                     55: SUBDIRS = Library LineMode Robot ComLine MiniServ Listen
                     56: 

Webmaster