Annotation of libwww/Makefile.am, revision 1.3

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 \
1.3     ! frystyk    33:        $(top_srcdir)/INSTALL \
1.1       frystyk    34:        $(top_srcdir)/COPYRIGH \
                     35:        $(top_srcdir)/PATCHES \
                     36:        $(top_srcdir)/CERN
                     37: 
                     38: ICONS = $(top_srcdir)/Icons/WWW/Bug48x.gif \
                     39:        $(top_srcdir)/Icons/WWW/Lib48x.gif \
                     40:        $(top_srcdir)/Icons/WWW/w3c_48x48.gif \
                     41:        $(top_srcdir)/Icons/WWW/Platform48x.gif \
                     42:        $(top_srcdir)/Icons/WWW/design48x.gif \
                     43:        $(top_srcdir)/Icons/WWW/doc48x.gif \
                     44:        $(top_srcdir)/Icons/WWW/guide48x.gif \
                     45:        $(top_srcdir)/Icons/WWW/internals48x.gif \
                     46:        $(top_srcdir)/Icons/WWW/install48x.gif \
                     47:        $(top_srcdir)/Icons/WWW/relnotes48x.gif \
                     48:        $(top_srcdir)/Icons/WWW/bullet.gif \
                     49:        $(top_srcdir)/Icons/32x32/smiley.gif \
                     50:        $(top_srcdir)/Icons/32x32/caution.gif
                     51: 
                     52: DIST_OTHER = \
                     53:        $(LEGAL) \
                     54:        $(ICONS)
                     55: 
1.3     ! frystyk    56: SUBDIRS = Library PICS LineMode Robot ComLine MiniServ Listen
1.1       frystyk    57: 
1.3     ! frystyk    58: #
        !            59: #      Hypertext supplied in text format
        !            60: #
        !            61: $(top_srcdir)/../WELCOME : /afs/w3.org/devel/WELCOME.html
        !            62:        www -p -na http://www.w3.org/devel/WELCOME.html \
        !            63:                -o $(top_srcdir)/../WELCOME
        !            64: 
        !            65: $(top_srcdir)/README : /afs/w3.org/devel/WWW/README.html
        !            66:        www -p -na http://www.w3.org/devel/WWW/README.html \
        !            67:                -o $(top_srcdir)/README
        !            68: 
        !            69: $(top_srcdir)/INSTALL : /afs/w3.org/devel/WWW/INSTALL.html
        !            70:        www -p -na http://www.w3.org/devel/WWW/INSTALL.html \
        !            71:                -o $(top_srcdir)/INSTALL
        !            72: 
        !            73: $(top_srcdir)/COPYRIGH : /afs/w3.org/devel/WWW/COPYRIGHT.html
        !            74:        www -p -na http://www.w3.org/devel/WWW/COPYRIGHT.html \
        !            75:                -o $(top_srcdir)/COPYRIGH
        !            76: 
        !            77: $(top_srcdir)/PATCHES : /afs/w3.org/devel/WWW/PATCHES.html
        !            78:        www -p -na http://www.w3.org/devel/WWW/PATCHES.html \
        !            79:                -o $(top_srcdir)/PATCHES
        !            80: 
        !            81: $(top_srcdir)/CERN : /afs/w3.org/devel/WWW/CERN.html
        !            82:        www -p -na http://www.w3.org/devel/WWW/CERN.html \
        !            83:                -o $(top_srcdir)/CERN

Webmaster