1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
localedir = $(datadir)/locale
EXTRA_DIST = \
mainpage.incl \
api_usage.html \
codecs.html \
hackersguide.txt \
qt4l_building.html \
qt4l_codecs.html \
qt4l_index.html \
qt4l_license.html \
qt4l_opening.html \
qt4l_positioning.html \
qt4l_reading.html \
qt4l_util.html \
qt4l_writing.html \
translatorsguide.txt \
Doxyfile.in
apiref:
doxygen Doxyfile
html: apiref
all: html
CLEANFILES = libquicktime.tags
install-data-local:
test -z "$(DESTDIR)$(docdir)/apiref" || $(mkdir_p) "$(DESTDIR)$(docdir)/apiref"
$(INSTALL_DATA) apiref/* $(DESTDIR)$(docdir)/apiref
clean-local:
-rm -rf apiref
uninstall-local:
-rm -rf "$(DESTDIR)$(docdir)/apiref"
|