Annotation of libwww/Robot/src/Makefile.am, revision 1.6

1.1       frystyk     1: ## Process this file with Automake to create Makefile.in.
                      2: 
1.4       frystyk     3: AUTOMAKE_OPTIONS = foreign
                      4: 
1.1       frystyk     5: bin_PROGRAMS = webbot
                      6: 
                      7: webbot_LDADD = ../../Library/src/libwww.a -lm
                      8: 
1.3       frystyk     9: webbot_DEPENDENCIES = \
                     10:        ../../Library/src/libwww.a
                     11: 
1.5       manoli     12: SUBDIRS = windows
                     13: 
1.1       frystyk    14: INCLUDES = -I$(srcdir)/../../Library/src
                     15: 
                     16: #      .h files are distributed but originally are made from the
                     17: #      self-documenting hypertext files.
                     18: SUFFIXES = .h .html
                     19: .html.h:
                     20:        www -w90 -na -p -to text/x-c $(srcdir)/$(*F).html > $(srcdir)/$(*F).h
                     21: 
1.6     ! frystyk    22: inc: $(BUILT_SOURCES)
        !            23:        @echo Generated built sources
        !            24: 
        !            25: PURIFY_CACHE = /home2/frystyk/purify-cache
        !            26: 
        !            27: purify: $(webbot_OBJECTS) $(webbot_DEPENDENCIES)
        !            28:        purify -cache-dir=$(PURIFY_CACHE) \
        !            29:        $(LINK) $(webbot_OBJECTS) $(webbot_LDADD) $(LIBS)
        !            30: 
1.1       frystyk    31: webbot_SOURCES = \
                     32:        HTRobot.c
                     33: 
1.3       frystyk    34: BUILT_SOURCES = \
1.1       frystyk    35:        HTRobot.h

Webmaster