diff options
author | Gerald Combs <gerald@wireshark.org> | 2004-06-09 03:08:13 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2004-06-09 03:08:13 +0000 |
commit | 058b3c5582ccbcdbe9a8dcd4434e8e2496440c68 (patch) | |
tree | e5be073fe0d34c6a1cbf22aec218d281519c880c /epan/Makefile.am | |
parent | 6aba0658ee441a4edcf0b40bf383b2d01e37cb21 (diff) | |
download | wireshark-058b3c5582ccbcdbe9a8dcd4434e8e2496440c68.tar.gz wireshark-058b3c5582ccbcdbe9a8dcd4434e8e2496440c68.tar.bz2 wireshark-058b3c5582ccbcdbe9a8dcd4434e8e2496440c68.zip |
Add Automake/Autoconf Doxygen targets.
svn path=/trunk/; revision=11128
Diffstat (limited to 'epan/Makefile.am')
-rw-r--r-- | epan/Makefile.am | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/epan/Makefile.am b/epan/Makefile.am index 2737cf6ce4..fb6ac24ebc 100644 --- a/epan/Makefile.am +++ b/epan/Makefile.am @@ -2,7 +2,7 @@ # Automake file for the EPAN library # (Ethereal Protocol ANalyzer Library) # -# $Id: Makefile.am,v 1.48 2004/05/11 11:19:26 guy Exp $ +# $Id: Makefile.am,v 1.49 2004/06/09 03:08:12 gerald Exp $ # # Ethereal - Network traffic analyzer # By Gerald Combs <gerald@ethereal.com> @@ -125,7 +125,7 @@ MAINTAINERCLEANFILES = \ # Add the object files for missing routines, if any. # libethereal_la_LIBADD = @INET_ATON_O@ @INET_PTON_O@ @INET_NTOP_O@ dfilter/libdfilter.la ftypes/libftypes.la @KRB5_LIBS@ -libethereal_la_DEPENDENCIES = @INET_ATON_O@ @INET_PTON_O@ @INET_NTOP_O@ dfilter/libdfilter.la ftypes/libftypes.la +libethereal_la_DEPENDENCIES = @INET_ATON_O@ @INET_PTON_O@ @INET_NTOP_O@ dfilter/libdfilter.la ftypes/libftypes.la doxygen ../packet-ncp2222.c : $(srcdir)/../ncp2222.py $(PYTHON) $(srcdir)/../ncp2222.py -o $@ @@ -249,3 +249,14 @@ plugin_src = endif # HAVE_PLUGINS +# Doxygen +doxygen.tmp: ../config.nmake doxygen.cfg + sed -e s/@VERSION@/$(VERSION)/ \ + < doxygen.cfg > $@ + +doxygen-run: +if HAVE_DOXYGEN + $(DOXYGEN) doxygen.tmp +endif # HAVE_DOXYGEN + +doxygen: doxygen.tmp doxygen-run |