# -*- Makefile -*- for winsup/doc # Copyright (c) 1998-2000, 2001, 2002, 2004, 2005, 2006, 2008, 2009, 2010, # 2013 Red Hat, Inc. # # This file is part of Cygwin. # # This software is a copyrighted work licensed under the terms of the # Cygwin license. Please consult the file "CYGWIN_LICENSE" for # details. SHELL = @SHELL@ srcdir = @srcdir@ VPATH = @srcdir@ DBXDIRS = -d $(srcdir) -d $(srcdir)/../utils -d $(srcdir)/../cygwin CC:=@CC@ CC_FOR_TARGET:=@CC@ exeext:=@build_exeext@ XMLTO:=xmlto --skip-validation --with-dblatex include $(srcdir)/../Makefile.common FAQ_SOURCES:= $(wildcard ${srcdir}/faq*.xml) .SUFFIXES: .html .body .html.body: $(srcdir)/bodysnatcher.pl $< all: Makefile Makefile.dep \ cygwin-ug-net/cygwin-ug-net.html \ cygwin-ug-net/cygwin-ug-net-nochunks.html.gz \ cygwin-api/cygwin-api.html \ faq/faq.body faq/faq.html \ cygwin-ug-net/cygwin-ug-net.pdf \ cygwin-api/cygwin-api.pdf Makefile: ${srcdir}/Makefile.in /bin/sh ./config.status clean: rm -f Makefile.dep rm -f doctool.exe doctool.o rm -f cygwin-api.xml rm -f *.html *.html.gz rm -Rf cygwin-api cygwin-ug cygwin-ug-net faq install: all cygwin-ug-net/cygwin-ug-net-nochunks.html.gz : cygwin-ug-net.xml -${XMLTO} html-nochunks -m $(srcdir)/cygwin.xsl $< -cp cygwin-ug-net.html cygwin-ug-net/cygwin-ug-net-nochunks.html -rm -f cygwin-ug-net/cygwin-ug-net-nochunks.html.gz -gzip cygwin-ug-net/cygwin-ug-net-nochunks.html cygwin-ug-net/cygwin-ug-net.html : cygwin-ug-net.xml -${XMLTO} html -o cygwin-ug-net/ -m $(srcdir)/cygwin.xsl $< # Some versions of jw hang with the -o option cygwin-ug-net/cygwin-ug-net.pdf : cygwin-ug-net.xml -${XMLTO} pdf -o cygwin-ug-net/ $< cygwin-api/cygwin-api.html : cygwin-api.xml -${XMLTO} html -o cygwin-api/ -m $(srcdir)/cygwin.xsl $< cygwin-api/cygwin-api.pdf : cygwin-api.xml -${XMLTO} pdf -o cygwin-api/ $< cygwin-api.xml : cygwin-api.in.xml ./doctool Makefile -./doctool -m $(DBXDIRS) -s $(srcdir) -o $@ $< faq/faq.html : $(FAQ_SOURCES) -${XMLTO} html -o faq -m $(srcdir)/cygwin.xsl $(srcdir)/faq.xml -sed -i 's;;;g' faq/faq.html ./doctool : doctool.c gcc -g $< -o $@ TBFILES = cygwin-ug-net.dvi cygwin-ug-net.rtf cygwin-ug-net.ps \ cygwin-ug-net.pdf cygwin-ug-net.xml \ cygwin-api.dvi cygwin-api.rtf cygwin-api.ps \ cygwin-api.pdf cygwin-api.xml TBDIRS = cygwin-ug-net cygwin-api TBDEPS = cygwin-ug-net/cygwin-ug-net.html cygwin-api/cygwin-api.html tarball : cygwin-docs.tar.bz2 cygwin-docs.tar.bz2 : $(TBFILES) $(TBDEPS) find $(TBFILES) $(TBDIRS) \! -type d | sort | tar -T - -cf - | bzip2 > cygwin-docs.tar.bz2 Makefile.dep: cygwin-ug-net.xml builddir=`pwd` \ && cd $(srcdir) \ && $(srcdir)/xidepend $^ > "$${builddir}/$@" -include Makefile.dep