Annotation of libwww/LineMode/src/Makefile.am, revision 1.1

1.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: bin_PROGRAMS = www
        !             8: 
        !             9: www_LDADD = ../../Library/src/libwww.a -lm
        !            10: 
        !            11: INCLUDES = -I$(srcdir)/../../Library/src
        !            12: 
        !            13: #      .h files are distributed but originally are made from the
        !            14: #      self-documenting hypertext files.
        !            15: SUFFIXES = .h .html
        !            16: .html.h:
        !            17:        www -w90 -na -p -to text/x-c $(srcdir)/$(*F).html > $(srcdir)/$(*F).h
        !            18: 
        !            19: #      Some extra make directives
        !            20: inc : $(HEADERS)
        !            21:        @echo Include files generated from hypertext.
        !            22: 
        !            23: all-local : inc
        !            24: 
        !            25: www_SOURCES = \
        !            26:        HTBrowse.c      GridText.c      ConView.c \
        !            27:        GridStyle.c     DefaultStyles.c
        !            28: 
        !            29: noinst_HEADERS = \
        !            30:        HTBrowse.h      GridStyle.h     GridText.h \
        !            31:        HTFont.h
        !            32: 
        !            33: # need the WAIS library and the cyrrilic support!
        !            34: 
        !            35: DIST_OTHER = \
        !            36:        $(WIN)/*.rc \
        !            37:        $(WIN)/*.ico \
        !            38:        $(WIN)/*.mak \
        !            39:        $(WIN)/*.def \
        !            40:        $(WIN)/*.c \
        !            41:        $(WIN)/*.h \
        !            42:        $(WIN)/*.txt \
        !            43:        $(VMS)/descrip.mms \
        !            44:        $(VMS)/build_multinet.com \
        !            45:        $(VMS)/setup.com \
        !            46:        DefaultStyles.c.classic \
        !            47:        DefaultStyles.c.modern \
        !            48:        a_stdio.g \
        !            49:        a_stdio.h

Webmaster