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 38 39
|
ACLOCAL_AMFLAGS= -I m4
SUBDIRS = @subdirs@
EXTRA_DIST=liboauth.lsm.in oauth.pc.in Doxyfile.in \
COPYING.GPL COPYING.MIT LICENSE.OpenSSL \
m4
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = oauth.pc
TESTS=tests/tcwiki@EXESUF@ tests/tceran@EXESUF@ tests/tcother@EXESUF@
CLEANFILES = stamp-doxygen stamp-doc
MAINTAINERCLEANFILES = \
src/Makefile.in \
tests/Makefile.in \
tests/atconfig \
doc/Makefile.in \
Makefile.in \
aclocal.m4 \
compile \
config.guess \
config.h.in \
config.sub \
configure \
depcomp \
install-sh \
missing
dox: stamp-doxygen
stamp-doxygen: src/oauth.h doc/mainpage.dox Doxyfile
$(DOXYGEN) Doxyfile && touch stamp-doxygen
cp doc/man/man3/oauth.h.3 doc/oauth.3
sed 's/ -\([qsdU]\)/ \\-\1/g' doc/man/man3/oauth.h.3 \
| sed 's/ -1 / \\-1 /' \
| sed 's/--/\\-\\-/' \
> doc/oauth.3
|