Annotation of libwww/Library/src/windows/Makefile.am, revision 1.1

1.1     ! frystyk     1: ## Process this file with Automake to create Makefile.in.
        !             2: 
        !             3: SUFFIXES = .files .def .txt
        !             4: 
        !             5: DEF := $(wildcard *.def)
        !             6: MAK := $(wildcard *.mak)
        !             7: PL  := $(wildcard *.pl)
        !             8: 
        !             9: DIST_OTHER = \
        !            10:        $(DEF) \
        !            11:        $(MAK) \
        !            12:        $(PL)
        !            13: 
        !            14: def:
        !            15:        for i in *.files; do ./makedefs.pl @ < $$i > `basename $$i files`def; done
        !            16: 
        !            17: list:
        !            18:        ls -1 ../*.c | sed -e s=\.\./==1 | ./makedefs.pl @ > wwwlist.txt 
        !            19: 
        !            20: .files.def:
        !            21:        ./makedefs.pl @ < $(srcdir)/$(*F).files > $(srcdir)/$(*F).def
        !            22: 
        !            23: wwwlist.txt:
        !            24:        ls -1 ../*.c | sed -e s=\.\./==1 | ./makedefs.pl @ > wwwlist.txt
        !            25: 
        !            26: windows: def list
        !            27: 

Webmaster