split doxygen.cfg into common Ethereal things and module specifics

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11044 f5534014-38df-0310-8fa8-9805f1628bb7
This commit is contained in:
ulfl 2004-05-31 13:42:17 +00:00
parent b7ddad188c
commit 622f968857
6 changed files with 1138 additions and 1064 deletions

View File

@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal
#
# $Id: Makefile.am,v 1.731 2004/05/22 21:51:30 guy Exp $
# $Id: Makefile.am,v 1.732 2004/05/31 13:40:03 ulfl Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@ethereal.com>
@ -433,6 +433,7 @@ EXTRA_DIST = \
doc/randpkt.txt \
doc/tethereal.pod \
doc/text2pcap.pod \
doxygen.cfg \
editcap.c \
epan/libethereal.def \
ethereal_be.py \

1060
doxygen.cfg Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
# Makefile.am
# Automake file for the GTK interface routines for Ethereal
#
# $Id: Makefile.am,v 1.98 2004/05/22 04:25:57 guy Exp $
# $Id: Makefile.am,v 1.99 2004/05/31 13:42:17 ulfl Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@ethereal.com>
@ -102,6 +102,7 @@ libui_a_SOURCES = \
endif
EXTRA_DIST = \
doxygen.cfg \
Makefile.common \
Makefile.nmake \
print_mswin.c \

View File

@ -1,7 +1,7 @@
## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
# $Id: Makefile.nmake,v 1.74 2004/05/20 11:53:52 ulfl Exp $
# $Id: Makefile.nmake,v 1.75 2004/05/31 13:42:17 ulfl Exp $
include ..\config.nmake
@ -40,8 +40,21 @@ ethereal-tap-register.c: $(ETHEREAL_TAP_SRC) ../make-tapreg-dotc Makefile.common
@echo Making ethereal-tap-register.c
@$(SH) ../make-tapreg-dotc ethereal-tap-register.c . $(ETHEREAL_TAP_SRC)
clean:
rm -f $(ETHEREAL_WIN32_GTK_OBJECTS) $(ETHEREAL_TAP_OBJECTS) libui.lib $(PDB_FILE)
rm -f $(ETHEREAL_WIN32_GTK_OBJECTS) $(ETHEREAL_TAP_OBJECTS) libui.lib $(PDB_FILE) doxygen.tmp
distclean: clean
rm -f ethereal-tap-register.c
doxygen.tmp: ..\config.nmake doxygen.cfg
sed -e s/@VERSION@/$(VERSION)/ \
< doxygen.cfg > $@
doxygen-run:
!IFDEF DOXYGEN
$(DOXYGEN) doxygen.tmp
!ENDIF
doxygen: doxygen.tmp doxygen-run

58
gtk/doxygen.cfg Normal file
View File

@ -0,0 +1,58 @@
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
# by quotes) that should identify the project.
PROJECT_NAME = Ethereal-Gtk
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
# This could be handy for archiving the generated documentation or
# if some version control system is used.
PROJECT_NUMBER = @VERSION@
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
# If a relative path is entered, it will be relative to the location
# where doxygen was started. If left blank the current directory will be used.
OUTPUT_DIRECTORY =
# The INPUT tag can be used to specify the files and/or directories that contain
# documented source files. You may enter file names like "myfile.cpp" or
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
INPUT =
# If the value of the INPUT tag contains directories, you can use the
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
# and *.h) to filter out the source-files in the directories. If left
# blank the following patterns are tested:
# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp
# *.h++ *.idl *.odl *.cs *.php *.php3 *.inc
FILE_PATTERNS = *.h
# The RECURSIVE tag can be used to turn specify whether or not subdirectories
# should be searched for input files as well. Possible values are YES and NO.
# If left blank NO is used.
RECURSIVE = YES
# The EXCLUDE tag can be used to specify files and/or directories that should
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
EXCLUDE =
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories
# that are symbolic links (a Unix filesystem feature) are excluded from the input.
EXCLUDE_SYMLINKS = NO
# If the value of the INPUT tag contains directories, you can use the
# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
# certain files from those directories.
EXCLUDE_PATTERNS =
@INCLUDE = ../doxygen.cfg