mirror of
https://github.com/dyne/FreeJ.git
synced 2026-02-11 07:19:32 +01:00
23 lines
369 B
Makefile
23 lines
369 B
Makefile
if BUILD_JSAPIDOC
|
|
SCRIPTINGDIR = scripting
|
|
endif
|
|
SUBDIRS = $(SCRIPTINGDIR)
|
|
|
|
EXTRA_DIST = doxy2swig.py freej.1 ipernav.png ipernav-small.png
|
|
|
|
man_MANS = freej.1
|
|
|
|
if BUILD_SWIG_PYTHON
|
|
pydocstrings.i:
|
|
$(DOXYGEN) freej.dox
|
|
$(PYTHON) $(srcdir)/doxy2swig.py xml/index.xml $@
|
|
|
|
noinst_DATA = pydocstrings.i
|
|
endif
|
|
|
|
clean-local:
|
|
rm -rf html
|
|
rm -rf xml
|
|
rm -f pydocstrings.i
|
|
|