Annotation of libwww/Library/src/Makefile.am, revision 2.1

2.1     ! frystyk     1: ## Process this file with Automake to create Makefile.in.
        !             2: 
        !             3: VMS = $(srcdir)/vms
        !             4: WIN = $(srcdir)/windows
        !             5: FTP = /afs/w3.org/devel/Dist/$(PROD)
        !             6: 
        !             7: lib_LIBRARIES = www
        !             8: 
        !             9: #      .h files are distributed but originally are made from the
        !            10: #      self-documenting hypertext files.
        !            11: SUFFIXES = .h .html .txt
        !            12: .html.h:
        !            13:        www -w90 -na -p -to text/x-c $(srcdir)/$(*F).html > $(srcdir)/$(*F).h
        !            14: 
        !            15: #      Some extra make directives
        !            16: inc : $(HEADERS)
        !            17:        @echo Include files generated from hypertext.
        !            18: 
        !            19: all-local : inc
        !            20: 
        !            21: www_SOURCES = \
        !            22:        HTParse.c       HTAccess.c      HTProxy.c \
        !            23:        HTMethod.c      HTProt.c        HTCache.c \
        !            24:        HTReqMan.c      HTDNS.c         HTArray.c \
        !            25:         HTFile.c       HTBTree.c       HTMulti.c \
        !            26:        HTFTP.c         HTTCP.c         SGML.c \
        !            27:        HTML.c          HTMLPDTD.c      HTDir.c \
        !            28:        HTFTPDir.c      HTEPtoCl.c      HTStyle.c \
        !            29:        HTPlain.c       HTWriter.c      HTFWrite.c \
        !            30:         HTMLGen.c      HTTee.c         HTXParse.c \
        !            31:        HTChunk.c       HTAtom.c        HTAnchor.c \
        !            32:        HTList.c        HTString.c      HTAlert.c \
        !            33:        HTFormat.c      HTHist.c        HTMemory.c \
        !            34:        HTInit.c        HTBInit.c       HTRules.c \
        !            35:        HTMIME.c        HTMIMERq.c      HTBound.c \
        !            36:        HTConLen.c      HTHeader.c      HTBind.c \
        !            37:        HTGopher.c      HTTelnet.c      HTNetTxt.c \
        !            38:        HTNews.c        HTWSRC.c        HTSocket.c \
        !            39:        HTAAUtil.c      HTAABrow.c      HTAssoc.c \
        !            40:        HTUU.c          HTTeXGen.c      HTEscape.c \
        !            41:        HTDescpt.c      HTGuess.c       HTWWWStr.c \
        !            42:        HTIcons.c       HTError.c       HTLog.c \
        !            43:        HTHome.c        HTDialog.c      HTNDir.c \
        !            44:        HTTP.c          HTTPServ.c      HTNewsRq.c \
        !            45:        HTTPGen.c       HTTPReq.c       HTTPRes.c \
        !            46:        HTNet.c         HTEvntrg.c      HTNewsLs.c \
        !            47:        @HTWAIS@
        !            48: 
        !            49: include_HEADERS = \
        !            50:        WWWUtil.h       WWWCore.h       WWWLib.h \
        !            51:        WWWDir.h        WWWFTP.h        WWWFile.h \
        !            52:        WWWGuess.h      WWWHTML.h       WWWHTTP.h \
        !            53:        WWWNews.h       WWWRules.h      WWWTelnt.h \
        !            54:        WWWCache.h      WWWApp.h        WWWInit.h \
        !            55:        WWWGophe.h      WWWMIME.h       WWWWAIS.h
        !            56: 
        !            57: noinst_HEADERS = sysdep.h \
        !            58:        HTParse.h       HTAccess.h      HTProxy.h \
        !            59:        HTMethod.h      HTProt.h        HTCache.h \
        !            60:        HTReqMan.h      HTReq.h         HTDNS.h \
        !            61:        HTMulti.h       HTBTree.h       HTFTP.h \
        !            62:        SGML.h          HTML.h          HTMLPDTD.h \
        !            63:        HTNet.h         HTNetMan.h      HTFTPDir.h \
        !            64:        HTPlain.h       HTWriter.h      HTFile.h \
        !            65:        HTFWrite.h      HTMLGen.h       HTTCP.h \
        !            66:        HTEvntrg.h      HTArray.h       HTChunk.h \
        !            67:        HTStream.h      HTStruct.h      HTMulpar.h \
        !            68:        HTTee.h         HTXParse.h      HTEPtoCl.h \
        !            69:        HTAtom.h        HTAnchor.h      HTAncMan.h \
        !            70:        HTList.h        HTWWWStr.h      HTMemory.h \
        !            71:        HTString.h      HTAlert.h       HTRules.h \
        !            72:        HTFormat.h      HTStyle.h       HTNewsLs.h \
        !            73:        HTInit.h        HTBInit.h       HTBind.h \
        !            74:        HTMIME.h        HTMIMERq.h      HTBound.h \
        !            75:        HTConLen.h      HTHeader.h      HTHist.h \
        !            76:        HTGopher.h      HTDir.h         HTUtils.h \
        !            77:        HTNewsRq.h      HText.h         HTTelnet.h \
        !            78:        HTNDir.h        HTWSRC.h        HTSocket.h \
        !            79:        HTAAUtil.h      HTAABrow.h      HTAssoc.h \
        !            80:        HTUU.h          HTTeXGen.h      HTDescpt.h \
        !            81:        HTGuess.h       HTNetTxt.h      HTBind.h \
        !            82:        HTIcons.h       HTError.h       HTLog.h \
        !            83:        HTHome.h        HTDialog.h      HTEscape.h \
        !            84:        HTTP.h          HTTPServ.h      HTNews.h \
        !            85:        HTTPGen.h       HTTPReq.h       HTTPRes.h \
        !            86:        HTTPUtil.h      
        !            87: 
        !            88: EXTRA_HEADERS = \
        !            89:        HTWAIS.h
        !            90: 
        !            91: DIST_OTHER = \
        !            92:        $(WIN)/Makefile \
        !            93:        $(WIN)/*.bat \
        !            94:        $(WIN)/*.pl \
        !            95:        $(WIN)/*.mak \
        !            96:        $(WIN)/*.def \
        !            97:        $(WIN)/*.c \
        !            98:        $(WIN)/*.h \
        !            99:        $(WIN)/*.txt \
        !           100:        $(VMS)/descrip.mms  $(VMS)/COPYING.LIB \
        !           101:        $(VMS)/build_multinet.com $(VMS)/build_multinet.com_alpha \
        !           102:        $(VMS)/multinet.opt $(VMS)/multinet.opt_alpha \
        !           103:        $(VMS)/build_ucx.com $(VMS)/build_ucx.com_alpha \
        !           104:        $(VMS)/ucx.opt $(VMS)/ucx.opt_alpha \
        !           105:        $(VMS)/patchlevel.h $(VMS)/ufc-crypt.h \
        !           106:        $(VMS)/crypt.c $(VMS)/crypt_util.c \
        !           107:        $(VMS)/getline.c $(VMS)/getpass.c \
        !           108:        $(VMS)/HTVMSUtils.h $(VMS)/HTVMSUtils.c \
        !           109:        $(VMS)/dirent.h $(VMS)/dirent.c $(VMS)/sys_dirent.h
        !           110: 

Webmaster