From 17b77485fa4ea8ecbf472e2d1daa15007ff93705 Mon Sep 17 00:00:00 2001 From: Erwin Nindl Date: Fri, 13 Jul 2007 16:05:16 +0000 Subject: * removed srtp directory * install libsrtp under /usr/local/lib * cleaned up Makefile --- srtp/doc/Makefile | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 srtp/doc/Makefile (limited to 'srtp/doc/Makefile') diff --git a/srtp/doc/Makefile b/srtp/doc/Makefile deleted file mode 100644 index d4c0845..0000000 --- a/srtp/doc/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# Makefile for libSRTP documentation -# -# David A. McGrew -# Cisco Systems, Inc. -# -# This makefile does not use the autoconf system; we don't really need -# it. We just run doxygen then latex. If you don't have either of -# these, then there is no way that you can make your own -# documentation. Of course, you can just go online at pick up the -# documentation from http://srtp.sourceforge.net. - -srcdir = . -top_srcdir = .. -top_builddir = ../ - - -# Determine the version of the library - -version = $(shell cat $(top_srcdir)/VERSION) - - -.PHONY: libsrtpdoc cryptodoc clean -libsrtpdoc: - @if test ! -e Doxyfile; then \ - echo "*** Sorry, can't build doc outside source dir"; exit 1; \ - fi - sed 's/LIBSRTPVERSION/$(version)/' header.template > header.tex - doxygen - sed 's/\subsection/\section/' latex/index.tex > latex/index.tmp - mv latex/index.tmp latex/index.tex - cd latex; make - cp latex/refman.pdf libsrtp.pdf - - -cryptodoc: clean - doxygen crypto.dox - cd latex; make - cp latex/refman.pdf crypto.pdf - -clean: - rm -rf latex/ header.tex - for a in * ; do \ - if [ -f "$$a~" ] ; then rm -f $$a~; fi; \ - done; -- cgit v1.2.3