1999-09-05 James Henstridge <james@daa.com.au> * plug-ins/pygimp/*: added pygimp to tree, as organised with Marc Lehmann. I have not hooked it into the main makefile yet. That should not be difficult though.
32 lines
548 B
Makefile
32 lines
548 B
Makefile
|
|
noinst_DATA = pygimp.html
|
|
|
|
EXTRA_DIST = pygimp.sgml \
|
|
pygimp.html \
|
|
structure-of-plugin.html \
|
|
procedural-database.html \
|
|
gimp-module-procedures.html \
|
|
gimp-objects.html \
|
|
support-modules.html \
|
|
end-note.html
|
|
|
|
printed: pygimp.ps pygimp.pdf
|
|
|
|
clean:
|
|
rm -f *.html pygimp.ps pygimp.pdf
|
|
|
|
|
|
pygimp.ps: pygimp.sgml
|
|
db2ps $(srcdir)/pygimp.sgml
|
|
|
|
pygimp.pdf: pygimp.sgml
|
|
db2pdf $(srcdir)/pygimp.sgml
|
|
|
|
pygimp.html: pygimp.sgml
|
|
cd $(srcdir) && db2html pygimp.sgml
|
|
cd $(srcdir) && mv pygimp/*.html .
|
|
rm -rf $(srcdir)/pygimp
|
|
|
|
.PHONY: printed clean
|
|
|