Mercurial > hg > sv-dependency-builds
view src/opusfile-0.9/doc/Makefile @ 83:ae30d91d2ffe
Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author | Chris Cannam |
---|---|
date | Fri, 07 Feb 2020 11:51:13 +0000 |
parents | 7aeed7906520 |
children |
line wrap: on
line source
## GNU makefile for opusfile documentation. -include ../package_version all: doxygen doxygen: Doxyfile ../include/opusfile.h doxygen pdf: doxygen make -C latex clean: $(RM) -r html $(RM) -r latex distclean: clean $(RM) Doxyfile .PHONY: all clean distclean doxygen pdf ../package_version: @if [ -x ../update_version ]; then \ ../update_version || true; \ elif [ ! -e $@ ]; then \ echo 'PACKAGE_VERSION="unknown"' > $@; \ fi # run autoconf-like replacements to finalize our config Doxyfile: Doxyfile.in Makefile ../package_version sed -e 's/@PACKAGE_NAME@/opusfile/' \ -e 's/@PACKAGE_VERSION@/$(PACKAGE_VERSION)/' \ -e 's/@top_srcdir@/../' \ < $< > $@