Moved a number of 16-bit functions to file16.c.
[wine.git] / documentation / Makefile.in
blobdb091931c12ac41fdd0bfe5e957709f48c049ab0
1 TOPSRCDIR = @top_srcdir@
2 TOPOBJDIR = ..
3 SRCDIR = @srcdir@
4 VPATH = @srcdir@
5 MODULE = none
6 DB2HTML = @DB2HTML@
7 DB2PDF = @DB2PDF@
8 DB2PS = @DB2PS@
9 DB2TXT = @DB2TXT@
11 EXTRASUBDIRS = samples
13 WINE_USER_SRCS = \
14 bugs.sgml \
15 compiling.sgml \
16 configuring.sgml \
17 fonts.sgml \
18 getting.sgml \
19 glossary.sgml \
20 installing.sgml \
21 introduction.sgml \
22 printing.sgml \
23 registry.sgml \
24 running.sgml
26 WINE_DEVEL_SRCS = \
27 architecture.sgml \
28 consoles.sgml \
29 cvs-regression.sgml \
30 debugger.sgml \
31 debugging.sgml \
32 documentation.sgml \
33 i18n.sgml \
34 implementation.sgml \
35 multimedia.sgml \
36 ole.sgml \
37 opengl.sgml \
38 patches.sgml \
39 porting.sgml \
40 testing.sgml
42 WINELIB_USER_SRCS = \
43 winelib-bindlls.sgml \
44 winelib-intro.sgml \
45 winelib-mfc.sgml \
46 winelib-porting.sgml \
47 winelib-toolkit.sgml
49 WINE_FAQ_SRCS = \
50 faq.sgml
52 MAN_TARGETS = wine.man
54 ALLBOOKS = \
55 wine-devel \
56 wine-user \
57 winelib-user
59 all: $(MAN_TARGETS)
61 @MAKE_RULES@
63 everything: $(MAN_TARGETS) doc
64 doc: html pdf ps txt
65 html: $(ALLBOOKS:%=%.html) wine-faq.html
66 pdf: $(ALLBOOKS:%=%.pdf)
67 ps: $(ALLBOOKS:%=%.ps)
68 txt: $(ALLBOOKS:%=%.txt)
70 .PHONY: everything doc html pdf ps dist
72 .SUFFIXES: .sgml .html .pdf .ps .txt
74 .sgml.html:
75 $(DB2HTML) -u $<
77 .sgml.pdf:
78 $(DB2PDF) $<
80 .sgml.ps:
81 $(DB2PS) $<
83 .sgml.txt:
84 $(DB2TXT) $<
86 wine-devel.pdf wine-devel.ps wine-devel.html wine-devel.txt: $(WINE_DEVEL_SRCS)
87 wine-user.pdf wine-user.ps wine-user.html wine-user.txt: $(WINE_USER_SRCS)
88 wine-faq.pdf wine-faq.ps wine-faq.html wine-faq.txt: $(WINE_FAQ_SRCS)
89 winelib-user.pdf winelib-user.ps winelib-user.html winelib-user.txt: $(WINELIB_USER_SRCS)
91 wine.man: wine.man.in
92 sed -e 's,@bindir\@,$(bindir),g' -e 's,@dlldir\@,$(dlldir),g' -e 's,@PACKAGE_STRING\@,@PACKAGE_STRING@,g' $(SRCDIR)/wine.man.in >$@ || ($(RM) $@ && false)
94 # Rules for distribution tarballs of formatted docs
96 dist: wine-doc-ps.tar.gz wine-doc-pdf.tar.gz wine-doc-html.tar.gz wine-doc-txt.tar.gz wine-faq.txt
98 wine-doc-ps.tar.gz: $(ALLBOOKS:%=%.ps)
99 tar cf - $(ALLBOOKS:%=%.ps) | gzip -9 > $@ || ($(RM) $@ && false)
101 wine-doc-pdf.tar.gz: $(ALLBOOKS:%=%.pdf)
102 tar cf - $(ALLBOOKS:%=%.pdf) | gzip -9 > $@ || ($(RM) $@ && false)
104 wine-doc-html.tar.gz: $(ALLBOOKS:%=%.html)
105 tar cf - $(ALLBOOKS:%=%.html) | gzip -9 > $@ || ($(RM) $@ && false)
107 wine-doc-txt.tar.gz: $(ALLBOOKS:%=%.txt)
108 tar cf - $(ALLBOOKS:%=%.txt) | gzip -9 > $@ || ($(RM) $@ && false)
110 install:: $(MAN_TARGETS)
111 $(MKINSTALLDIRS) $(mandir)/man$(prog_manext) $(mandir)/man$(conf_manext) $(mandir)/man$(api_manext)
112 $(INSTALL_DATA) wine.man $(mandir)/man$(prog_manext)/wine.$(prog_manext)
113 $(INSTALL_DATA) $(SRCDIR)/wine.conf.man $(mandir)/man$(conf_manext)/wine.conf.$(conf_manext)
115 uninstall::
116 $(RM) $(mandir)/man$(prog_manext)/wine.$(prog_manext)
117 $(RM) $(mandir)/man$(conf_manext)/wine.conf.$(conf_manext)
119 install-api-man::
120 for i in $(SRCDIR)/man$(api_manext)/*; do $(INSTALL_DATA) $$i $(mandir)/man$(api_manext); done
122 clean::
123 $(RM) *.aux *.dvi *.out *.tex *.log wine-doc-*.tar.gz wine-faq.html wine-faq.txt $(MAN_TARGETS)
124 $(RM) $(ALLBOOKS:%=%.ps) $(ALLBOOKS:%=%.pdf) $(ALLBOOKS:%=%.html) $(ALLBOOKS:%=%.txt)
125 $(RM) -r html api-guide man$(api_manext) *.junk DBTOHTML_OUTPUT_DIR*
127 ### Dependencies: