Added SILC Thread Queue API
[silc.git] / util / robodoc / makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 #
4 # Information for automake
5 #
6
7 AUTOMAKE_OPTIONS = dist-zip
8
9 SUBDIRS = Docs Source
10
11 exampledir = $(prefix)/examples/$(PACKAGE)-$(VERSION)
12
13 docdir = $(prefix)/doc/$(PACKAGE)-$(VERSION)
14 doc_DATA = AUTHORS COPYING ChangeLog INSTALL NEWS README
15
16 EXTRA_DIST = \
17         Docs/robodoc.1 \
18         Docs/robodoc.m4 \
19         Docs/robodoc.html \
20         Docs/general.m4 \
21         Docs/example.c \
22         Docs/tocgen.m4 \
23         Docs/example_makefile \
24         Docs/main.css \
25         Examples/C/prog1.c \
26         Examples/C/prog2.c \
27         Examples/C/prog1.c.html \
28         Examples/C/prog2.c.html \
29         Examples/C/makefile \
30         Examples/CPP/muppets.h \
31         Examples/CPP/muppets.cpp \
32         Examples/CPP/masterindex.html \
33         Examples/CPP/muppets.h.html \
34         Examples/CPP/muppets.cpp.html \
35         Examples/CPP/makefile \
36         Headers/assembler.sample \
37         Headers/basic.sample \
38         Headers/c.sample \
39         Headers/cpp.sample \
40         Headers/fortan.sample \
41         Headers/html.sample \
42         Headers/tcl.sample \
43         Source/makefile.plain
44
45 #
46 # End of automake stuff
47 #
48
49
50 myclean:
51         rm -f *~
52         rm -f makefile.in
53         rm -f *.tar.gz *.zip
54         rm -f *.log aclocal.m4 config.cache
55         rm -f install-sh
56         rm -f mkinstalldirs
57         rm -f missing makefile
58         rm -f configure config.status
59         $(MAKE) -f makefile.am -C Docs     myclean
60         $(MAKE) -f makefile.am -C Source   myclean
61         $(MAKE)                -C Examples myclean
62
63 Docs/robodoc.html :
64         $(MAKE) -C Docs robodoc.html
65
66 Examples/C/prog1.c.html :
67         $(MAKE) -C Examples/C prog1.c.html 
68
69 Examples/C/prog2.c.html :
70         $(MAKE) -C Examples/C prog2.c.html 
71
72 Examples/CPP/masterindex.html :
73         $(MAKE) -C Examples/CPP masterindex.html 
74
75 Examples/CPP/muppets.h.html :
76         $(MAKE) -C Examples/CPP muppets.h.html 
77
78 Examples/CPP/muppets.cpp.html :
79         $(MAKE) -C Examples/CPP muppets.cpp.html 
80
81 #
82 #
83 #
84
85 docall:
86         $(MAKE) -C Source html
87