Remove Makefile.common files
Now that nmake build system has been removed they are not needed anymore. Change-Id: I88075f955bb4349185859c1af4be22e53de5850f Reviewed-on: https://code.wireshark.org/review/16050 Petri-Dish: João Valverde <j@v6e.pt> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: João Valverde <j@v6e.pt>
This commit is contained in:
parent
f6c5cf9532
commit
a16d401b25
151
Makefile.am
151
Makefile.am
@ -362,7 +362,68 @@ plugin_ldadd =
|
||||
|
||||
endif # HAVE_PLUGINS
|
||||
|
||||
include Makefile.common
|
||||
# "BUILT_SOURCES" are built before any "make all" or "make check" targets.
|
||||
BUILT_HEADER_FILES = \
|
||||
version.h
|
||||
|
||||
BUILT_C_FILES =
|
||||
|
||||
BUILT_SOURCES = $(BUILT_C_FILES) $(BUILT_HEADER_FILES)
|
||||
|
||||
# Header files generated from source files.
|
||||
GENERATED_HEADER_FILES = \
|
||||
text2pcap-scanner_lex.h \
|
||||
$(BUILT_HEADER_FILES)
|
||||
|
||||
# C source files generated from source files.
|
||||
GENERATED_C_FILES =
|
||||
|
||||
# All the generated files.
|
||||
GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)
|
||||
|
||||
EXTCAP_COMMON_SRC = \
|
||||
extcap.c \
|
||||
extcap_parser.c
|
||||
|
||||
EXTCAP_COMMON_INCLUDES = \
|
||||
extcap.h \
|
||||
extcap_parser.h
|
||||
|
||||
# sources common for wireshark, tshark, and rawshark
|
||||
SHARK_COMMON_SRC = \
|
||||
cfile.c \
|
||||
frame_tvbuff.c \
|
||||
sync_pipe_write.c
|
||||
|
||||
# corresponding headers
|
||||
SHARK_COMMON_INCLUDES = \
|
||||
cfile.h \
|
||||
file.h \
|
||||
fileset.h \
|
||||
frame_tvbuff.h \
|
||||
register.h \
|
||||
ws_symbol_export.h
|
||||
|
||||
# wireshark specifics
|
||||
WIRESHARK_COMMON_SRC = \
|
||||
$(SHARK_COMMON_SRC) \
|
||||
capture_info.c \
|
||||
capture_opts.c \
|
||||
file.c \
|
||||
fileset.c \
|
||||
filter_files.c \
|
||||
summary.c \
|
||||
ws_version_info.c
|
||||
|
||||
# corresponding headers
|
||||
WIRESHARK_COMMON_INCLUDES = \
|
||||
capture_info.h \
|
||||
capture_opts.h \
|
||||
filter_files.h \
|
||||
globals.h \
|
||||
log.h \
|
||||
summary.h \
|
||||
sync_pipe.h
|
||||
|
||||
if HAVE_EXTCAP
|
||||
SHARK_COMMON_SRC += $(EXTCAP_COMMON_SRC)
|
||||
@ -433,6 +494,13 @@ wireshark_gtk_LDADD = \
|
||||
@PORTAUDIO_LIBS@
|
||||
endif
|
||||
|
||||
tshark_SOURCES = \
|
||||
$(SHARK_COMMON_SRC) \
|
||||
capture_opts.c \
|
||||
filter_files.c \
|
||||
tshark.c \
|
||||
ws_version_info.c
|
||||
|
||||
tshark_CPPFLAGS = $(AM_CPPFLAGS) $(GLIB_CFLAGS)
|
||||
|
||||
tshark_LDFLAGS = $(AM_LDFLAGS) $(EXTRALINKFLAGS)
|
||||
@ -458,6 +526,11 @@ tshark_LDADD = \
|
||||
@LIBGNUTLS_LIBS@ \
|
||||
@LIBSMI_LDFLAGS@
|
||||
|
||||
tfshark_SOURCES = \
|
||||
$(SHARK_COMMON_SRC) \
|
||||
tfshark.c \
|
||||
ws_version_info.c
|
||||
|
||||
tfshark_CPPFLAGS = $(AM_CPPFLAGS) $(GLIB_CFLAGS)
|
||||
|
||||
tfshark_LDFLAGS = $(AM_LDFLAGS) $(EXTRALINKFLAGS)
|
||||
@ -479,6 +552,11 @@ tfshark_LDADD = \
|
||||
@LIBGNUTLS_LIBS@ \
|
||||
@LIBSMI_LDFLAGS@
|
||||
|
||||
rawshark_SOURCES = \
|
||||
$(SHARK_COMMON_SRC) \
|
||||
rawshark.c \
|
||||
ws_version_info.c
|
||||
|
||||
rawshark_CPPFLAGS = $(AM_CPPFLAGS) $(GLIB_CFLAGS)
|
||||
|
||||
rawshark_LDFLAGS = $(AM_LDFLAGS) $(EXTRALINKFLAGS)
|
||||
@ -502,6 +580,11 @@ rawshark_LDADD = \
|
||||
@LIBGNUTLS_LIBS@ \
|
||||
@LIBSMI_LDFLAGS@
|
||||
|
||||
text2pcap_SOURCES = \
|
||||
text2pcap.c \
|
||||
text2pcap-scanner.l \
|
||||
ws_version_info.c
|
||||
|
||||
text2pcap_CPPFLAGS = $(AM_CPPFLAGS) $(GLIB_CFLAGS)
|
||||
|
||||
# Don't turn on -Werror for text2pcap: its source includes text2pcap-scanner.c
|
||||
@ -516,6 +599,10 @@ text2pcap_LDADD = \
|
||||
wsutil/libwsutil.la \
|
||||
@GLIB_LIBS@
|
||||
|
||||
mergecap_SOURCES = \
|
||||
mergecap.c \
|
||||
ws_version_info.c
|
||||
|
||||
mergecap_CPPFLAGS = $(AM_CPPFLAGS) $(GLIB_CFLAGS)
|
||||
|
||||
# Libraries with which to link mergecap.
|
||||
@ -524,6 +611,10 @@ mergecap_LDADD = \
|
||||
wsutil/libwsutil.la \
|
||||
@GLIB_LIBS@
|
||||
|
||||
capinfos_SOURCES = \
|
||||
capinfos.c \
|
||||
ws_version_info.c
|
||||
|
||||
capinfos_CPPFLAGS = $(AM_CPPFLAGS) $(GLIB_CFLAGS)
|
||||
|
||||
# Libraries with which to link capinfos.
|
||||
@ -533,6 +624,10 @@ capinfos_LDADD = \
|
||||
@GLIB_LIBS@ \
|
||||
@LIBGCRYPT_LIBS@
|
||||
|
||||
captype_SOURCES = \
|
||||
captype.c \
|
||||
ws_version_info.c
|
||||
|
||||
captype_CPPFLAGS = $(AM_CPPFLAGS) $(GLIB_CFLAGS)
|
||||
|
||||
# Libraries with which to link captype.
|
||||
@ -541,6 +636,10 @@ captype_LDADD = \
|
||||
wsutil/libwsutil.la \
|
||||
@GLIB_LIBS@
|
||||
|
||||
editcap_SOURCES = \
|
||||
editcap.c \
|
||||
ws_version_info.c
|
||||
|
||||
editcap_CPPFLAGS = $(AM_CPPFLAGS) $(GLIB_CFLAGS)
|
||||
|
||||
# Libraries with which to link editcap.
|
||||
@ -549,6 +648,10 @@ editcap_LDADD = \
|
||||
wsutil/libwsutil.la \
|
||||
@GLIB_LIBS@
|
||||
|
||||
reordercap_SOURCES = \
|
||||
reordercap.c \
|
||||
ws_version_info.c
|
||||
|
||||
reordercap_CPPFLAGS = $(AM_CPPFLAGS) $(GLIB_CFLAGS)
|
||||
|
||||
# Libraries with which to link reordercap.
|
||||
@ -557,6 +660,10 @@ reordercap_LDADD = \
|
||||
wsutil/libwsutil.la \
|
||||
@GLIB_LIBS@
|
||||
|
||||
randpkt_SOURCES = \
|
||||
randpkt.c \
|
||||
ws_version_info.c
|
||||
|
||||
randpkt_CPPFLAGS = $(AM_CPPFLAGS) $(GLIB_CFLAGS)
|
||||
|
||||
# Libraries with which to link randpkt.
|
||||
@ -568,6 +675,9 @@ randpkt_LDADD = \
|
||||
@PCAP_LIBS@ \
|
||||
@C_ARES_LIBS@
|
||||
|
||||
dftest_SOURCES = \
|
||||
dftest.c
|
||||
|
||||
dftest_CPPFLAGS = $(AM_CPPFLAGS) $(GLIB_CFLAGS)
|
||||
|
||||
# Libraries and plugin flags with which to link dftest.
|
||||
@ -586,7 +696,16 @@ dftest_LDADD = \
|
||||
@LIBGNUTLS_LIBS@ \
|
||||
@LIBSMI_LDFLAGS@
|
||||
|
||||
echld_CPPFLAGS = $(AM_CPPFLAGS) $(GLIB_CFLAGS)
|
||||
echld_test_SOURCES = \
|
||||
echld_test.c \
|
||||
capture_opts.c \
|
||||
capture_stop_conditions.c \
|
||||
cfile.c \
|
||||
conditions.c \
|
||||
ringbuffer.c \
|
||||
sync_pipe_write.c
|
||||
|
||||
echld_test_CPPFLAGS = $(AM_CPPFLAGS) $(GLIB_CFLAGS)
|
||||
|
||||
echld_test_LDADD = \
|
||||
epan/libwireshark.la \
|
||||
@ -598,9 +717,19 @@ echld_test_LDADD = \
|
||||
@C_ARES_LIBS@
|
||||
|
||||
echld_test_DEPENDENCIES = \
|
||||
echld/libechld.la \
|
||||
echld/libechld.la \
|
||||
epan/libwireshark.la
|
||||
|
||||
dumpcap_SOURCES = \
|
||||
capture_opts.c \
|
||||
capture_stop_conditions.c \
|
||||
conditions.c \
|
||||
dumpcap.c \
|
||||
filter_files.c \
|
||||
ringbuffer.c \
|
||||
sync_pipe_write.c \
|
||||
ws_version_info.c
|
||||
|
||||
dumpcap_CPPFLAGS = $(AM_CPPFLAGS) $(GLIB_CFLAGS)
|
||||
|
||||
dumpcap_CFLAGS = $(AM_CFLAGS) $(PIE_CFLAGS)
|
||||
@ -619,6 +748,17 @@ dumpcap_LDADD = \
|
||||
@LIBCAP_LIBS@ \
|
||||
@LIBNL_LIBS@
|
||||
|
||||
# this target needed for distribution only
|
||||
noinst_HEADERS = \
|
||||
$(SHARK_COMMON_INCLUDES) \
|
||||
$(EXTCAP_COMMON_INCLUDES) \
|
||||
$(WIRESHARK_COMMON_INCLUDES) \
|
||||
capture_stop_conditions.h \
|
||||
conditions.h \
|
||||
ringbuffer.h \
|
||||
ws_diag_control.h \
|
||||
ws_version_info.h
|
||||
|
||||
#
|
||||
# Build the version string
|
||||
#
|
||||
@ -642,7 +782,7 @@ SUFFIXES = .sh
|
||||
services:
|
||||
$(PYTHON) $(srcdir)/tools/make-services.py
|
||||
|
||||
CLEANFILES = \
|
||||
CLEANFILES = \
|
||||
*~ \
|
||||
doxygen-core.tag \
|
||||
vgcore.*
|
||||
@ -661,7 +801,7 @@ DISTCLEANFILES = \
|
||||
ps.c \
|
||||
version.h
|
||||
|
||||
MAINTAINERCLEANFILES = \
|
||||
MAINTAINERCLEANFILES = \
|
||||
$(GENERATED_FILES) \
|
||||
Makefile.in \
|
||||
aclocal.m4 \
|
||||
@ -679,7 +819,6 @@ EXTRA_DIST = \
|
||||
.mailmap \
|
||||
INSTALL.configure \
|
||||
Makefile.am.inc \
|
||||
Makefile.common \
|
||||
README.aix \
|
||||
README.bsd \
|
||||
README.DECT \
|
||||
|
184
Makefile.common
184
Makefile.common
@ -1,184 +0,0 @@
|
||||
# Makefile.common
|
||||
# Contains the stuff from Makefile.am and Makefile.nmake that is
|
||||
# a) common to both files and
|
||||
# b) portable between both files
|
||||
#
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
# "BUILT_SOURCES" are built before any "make all" or "make check" targets.
|
||||
BUILT_HEADER_FILES = \
|
||||
version.h
|
||||
|
||||
BUILT_C_FILES =
|
||||
|
||||
BUILT_SOURCES = $(BUILT_C_FILES) $(BUILT_HEADER_FILES)
|
||||
|
||||
# Header files generated from source files.
|
||||
GENERATED_HEADER_FILES = \
|
||||
text2pcap-scanner_lex.h \
|
||||
$(BUILT_HEADER_FILES)
|
||||
|
||||
# C source files generated from source files.
|
||||
GENERATED_C_FILES =
|
||||
|
||||
# All the generated files.
|
||||
GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)
|
||||
|
||||
EXTCAP_COMMON_SRC = \
|
||||
extcap.c \
|
||||
extcap_parser.c
|
||||
|
||||
EXTCAP_COMMON_INCLUDES = \
|
||||
extcap.h \
|
||||
extcap_parser.h
|
||||
|
||||
# sources common for wireshark, tshark, and rawshark
|
||||
SHARK_COMMON_SRC = \
|
||||
cfile.c \
|
||||
frame_tvbuff.c \
|
||||
sync_pipe_write.c
|
||||
|
||||
# corresponding headers
|
||||
SHARK_COMMON_INCLUDES = \
|
||||
cfile.h \
|
||||
file.h \
|
||||
fileset.h \
|
||||
frame_tvbuff.h \
|
||||
register.h \
|
||||
ws_symbol_export.h
|
||||
|
||||
# wireshark specifics
|
||||
WIRESHARK_COMMON_SRC = \
|
||||
$(SHARK_COMMON_SRC) \
|
||||
capture_info.c \
|
||||
capture_opts.c \
|
||||
file.c \
|
||||
fileset.c \
|
||||
filter_files.c \
|
||||
summary.c \
|
||||
ws_version_info.c
|
||||
|
||||
# corresponding headers
|
||||
WIRESHARK_COMMON_INCLUDES = \
|
||||
capture_info.h \
|
||||
capture_opts.h \
|
||||
filter_files.h \
|
||||
globals.h \
|
||||
log.h \
|
||||
summary.h \
|
||||
sync_pipe.h
|
||||
|
||||
# tshark specifics
|
||||
tshark_SOURCES = \
|
||||
$(SHARK_COMMON_SRC) \
|
||||
capture_opts.c \
|
||||
filter_files.c \
|
||||
tshark.c \
|
||||
ws_version_info.c
|
||||
|
||||
# tfshark specifics
|
||||
tfshark_SOURCES = \
|
||||
$(SHARK_COMMON_SRC) \
|
||||
tfshark.c \
|
||||
ws_version_info.c
|
||||
|
||||
# rawshark specifics
|
||||
rawshark_SOURCES = \
|
||||
$(SHARK_COMMON_SRC) \
|
||||
rawshark.c \
|
||||
ws_version_info.c
|
||||
|
||||
# text2pcap specifics
|
||||
text2pcap_SOURCES = \
|
||||
text2pcap.c \
|
||||
text2pcap-scanner.l \
|
||||
ws_version_info.c
|
||||
|
||||
text2pcap_INCLUDES = \
|
||||
text2pcap.h
|
||||
|
||||
# mergecap specifics
|
||||
mergecap_SOURCES = \
|
||||
mergecap.c \
|
||||
ws_version_info.c
|
||||
|
||||
# editcap specifics
|
||||
editcap_SOURCES = \
|
||||
editcap.c \
|
||||
ws_version_info.c
|
||||
|
||||
# reordercap specifics
|
||||
reordercap_SOURCES = \
|
||||
reordercap.c \
|
||||
ws_version_info.c
|
||||
|
||||
# capinfos specifics
|
||||
capinfos_SOURCES = \
|
||||
capinfos.c \
|
||||
ws_version_info.c
|
||||
|
||||
# captype specifics
|
||||
captype_SOURCES = \
|
||||
captype.c \
|
||||
ws_version_info.c
|
||||
|
||||
# dftest specifics
|
||||
dftest_SOURCES = \
|
||||
dftest.c
|
||||
|
||||
# echld specifics
|
||||
echld_test_SOURCES = \
|
||||
echld_test.c \
|
||||
capture_opts.c \
|
||||
capture_stop_conditions.c \
|
||||
cfile.c \
|
||||
conditions.c \
|
||||
ringbuffer.c \
|
||||
sync_pipe_write.c
|
||||
|
||||
# randpkt specifics
|
||||
randpkt_SOURCES = \
|
||||
randpkt.c \
|
||||
ws_version_info.c
|
||||
|
||||
# dumpcap specifics
|
||||
dumpcap_SOURCES = \
|
||||
capture_opts.c \
|
||||
capture_stop_conditions.c \
|
||||
conditions.c \
|
||||
dumpcap.c \
|
||||
filter_files.c \
|
||||
ringbuffer.c \
|
||||
sync_pipe_write.c \
|
||||
ws_version_info.c
|
||||
|
||||
# corresponding headers
|
||||
dumpcap_INCLUDES = \
|
||||
capture_stop_conditions.h \
|
||||
conditions.h \
|
||||
ringbuffer.h
|
||||
|
||||
# this target needed for distribution only
|
||||
noinst_HEADERS = \
|
||||
$(SHARK_COMMON_INCLUDES) \
|
||||
$(EXTCAP_COMMON_INCLUDES) \
|
||||
$(WIRESHARK_COMMON_INCLUDES) \
|
||||
$(dumpcap_INCLUDES) \
|
||||
ws_diag_control.h \
|
||||
ws_version_info.h
|
@ -19,29 +19,33 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
include Makefile.common
|
||||
include $(top_srcdir)/Makefile.am.inc
|
||||
|
||||
AM_CPPFLAGS = $(INCLUDEDIRS) $(WS_CPPFLAGS) $(GLIB_CFLAGS)
|
||||
|
||||
noinst_LIBRARIES = libcapchild.a
|
||||
|
||||
# All sources that should be put in the source distribution tarball
|
||||
libcapchild_a_SOURCES = \
|
||||
capture_ifinfo.c \
|
||||
capture_sync.c \
|
||||
capture_session.h \
|
||||
capture_sync.h
|
||||
|
||||
libcapchild_a_DEPENDENCIES =
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
doxygen.cfg.in
|
||||
|
||||
CLEANFILES = \
|
||||
doxygen-capchild.tag \
|
||||
libcapchild.a \
|
||||
*~
|
||||
|
||||
MAINTAINERCLEANFILES = \
|
||||
$(GENERATED_FILES) \
|
||||
Makefile.in
|
||||
|
||||
# All sources that should be put in the source distribution tarball
|
||||
libcapchild_a_SOURCES = \
|
||||
$(CAPCHILD_SRC) \
|
||||
$(noinst_HEADERS)
|
||||
|
||||
libcapchild_a_DEPENDENCIES =
|
||||
|
||||
doxygen:
|
||||
if HAVE_DOXYGEN
|
||||
$(DOXYGEN) doxygen.cfg
|
||||
@ -57,15 +61,9 @@ checkapi: checkapi-base checkapi-todo
|
||||
checkapi-base:
|
||||
$(PERL) $(top_srcdir)/tools/checkAPIs.pl -g deprecated-gtk -build \
|
||||
-sourcedir=$(srcdir) \
|
||||
$(CAPCHILD_SRC)
|
||||
$(libcapchild_a_SOURCES)
|
||||
|
||||
checkapi-todo:
|
||||
$(PERL) $(top_srcdir)/tools/checkAPIs.pl -M -g deprecated-gtk-todo -build \
|
||||
-sourcedir=$(srcdir) \
|
||||
$(CAPCHILD_SRC)
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(GENERATOR_FILES) \
|
||||
CMakeLists.txt \
|
||||
doxygen.cfg.in \
|
||||
Makefile.common
|
||||
$(libcapchild_a_SOURCES)
|
||||
|
@ -1,30 +0,0 @@
|
||||
# Makefile.common
|
||||
# Contains the stuff from Makefile.am and Makefile.nmake that is
|
||||
# a) common to both files and
|
||||
# b) portable between both files
|
||||
#
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
CAPCHILD_SRC = \
|
||||
capture_ifinfo.c \
|
||||
capture_sync.c
|
||||
|
||||
noinst_HEADERS = \
|
||||
capture_session.h \
|
||||
capture_sync.h
|
@ -19,49 +19,25 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
include Makefile.common
|
||||
include $(top_srcdir)/Makefile.am.inc
|
||||
|
||||
AM_CPPFLAGS = $(INCLUDEDIRS) $(WS_CPPFLAGS) $(GLIB_CFLAGS) $(LIBNL_CFLAGS)
|
||||
|
||||
noinst_LIBRARIES = libcaputils.a
|
||||
|
||||
PLATFORM_CAPUTILS_SRC = \
|
||||
capture-pcap-util-unix.c
|
||||
|
||||
CAPUTILS_SRC = \
|
||||
$(COMMON_CAPUTILS_SRC) \
|
||||
$(PLATFORM_CAPUTILS_SRC)
|
||||
|
||||
CLEANFILES = \
|
||||
doxygen-caputils.tag \
|
||||
libcaputils.a \
|
||||
*~
|
||||
|
||||
MAINTAINERCLEANFILES = \
|
||||
$(GENERATED_FILES) \
|
||||
Makefile.in
|
||||
|
||||
EXTRA_DIST = \
|
||||
.editorconfig \
|
||||
$(GENERATOR_FILES) \
|
||||
airpcap.h \
|
||||
airpcap_loader.c \
|
||||
airpcap_loader.h \
|
||||
capture_win_ifnames.c \
|
||||
capture_win_ifnames.h \
|
||||
capture-wpcap.c \
|
||||
capture-wpcap.h \
|
||||
capture_wpcap_packet.c \
|
||||
capture_wpcap_packet.h \
|
||||
CMakeLists.txt \
|
||||
doxygen.cfg.in \
|
||||
Makefile.common
|
||||
|
||||
# All sources that should be put in the source distribution tarball
|
||||
libcaputils_a_SOURCES = \
|
||||
$(CAPUTILS_SRC) \
|
||||
$(noinst_HEADERS)
|
||||
capture_ifinfo.h \
|
||||
capture-pcap-util.h \
|
||||
capture-pcap-util.c \
|
||||
capture-pcap-util-unix.c \
|
||||
capture-pcap-util-int.h \
|
||||
capture-wpcap.h \
|
||||
capture_wpcap_packet.h \
|
||||
iface_monitor.c \
|
||||
iface_monitor.h \
|
||||
ws80211_utils.c \
|
||||
ws80211_utils.h
|
||||
|
||||
#
|
||||
# This is used to build dumpcap, and dumpcap is, if possible, built as
|
||||
@ -73,6 +49,28 @@ libcaputils_a_CFLAGS = $(AM_CFLAGS) $(PIE_CFLAGS)
|
||||
|
||||
libcaputils_a_DEPENDENCIES =
|
||||
|
||||
CLEANFILES = \
|
||||
doxygen-caputils.tag \
|
||||
libcaputils.a \
|
||||
*~
|
||||
|
||||
MAINTAINERCLEANFILES = \
|
||||
Makefile.in
|
||||
|
||||
EXTRA_DIST = \
|
||||
.editorconfig \
|
||||
airpcap.h \
|
||||
airpcap_loader.c \
|
||||
airpcap_loader.h \
|
||||
capture_win_ifnames.c \
|
||||
capture_win_ifnames.h \
|
||||
capture-wpcap.c \
|
||||
capture-wpcap.h \
|
||||
capture_wpcap_packet.c \
|
||||
capture_wpcap_packet.h \
|
||||
CMakeLists.txt \
|
||||
doxygen.cfg.in
|
||||
|
||||
doxygen:
|
||||
if HAVE_DOXYGEN
|
||||
$(DOXYGEN) doxygen.cfg
|
||||
@ -88,9 +86,9 @@ checkapi: checkapi-base checkapi-todo
|
||||
checkapi-base:
|
||||
$(PERL) $(top_srcdir)/tools/checkAPIs.pl -g deprecated-gtk -build \
|
||||
-sourcedir=$(srcdir) \
|
||||
$(CAPUTILS_SRC)
|
||||
$(libcaputils_a_SOURCES)
|
||||
|
||||
checkapi-todo:
|
||||
$(PERL) $(top_srcdir)/tools/checkAPIs.pl -M -g deprecated-gtk-todo -build \
|
||||
-sourcedir=$(srcdir) \
|
||||
$(CAPUTILS_SRC)
|
||||
$(libcaputils_a_SOURCES)
|
||||
|
@ -1,36 +0,0 @@
|
||||
# Makefile.common
|
||||
# Contains the stuff from Makefile.am and Makefile.nmake that is
|
||||
# a) common to both files and
|
||||
# b) portable between both files
|
||||
#
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
COMMON_CAPUTILS_SRC = \
|
||||
capture-pcap-util.c \
|
||||
iface_monitor.c \
|
||||
ws80211_utils.c
|
||||
|
||||
noinst_HEADERS = \
|
||||
capture_ifinfo.h \
|
||||
capture-pcap-util.h \
|
||||
capture-pcap-util-int.h \
|
||||
capture-wpcap.h \
|
||||
capture_wpcap_packet.h \
|
||||
iface_monitor.h \
|
||||
ws80211_utils.h
|
@ -13,7 +13,7 @@ macro(SET_MODULE_INFO _plugin _ver_major _ver_minor _ver_micro _ver_extra)
|
||||
set(MODULE_VERSION "${MODULE_VERSION_MAJOR}.${MODULE_VERSION_MINOR}.${MODULE_VERSION_MICRO}.${MODULE_VERSION_EXTRA}")
|
||||
set(RC_MODULE_VERSION "${MODULE_VERSION_MAJOR},${MODULE_VERSION_MINOR},${MODULE_VERSION_MICRO},${MODULE_VERSION_EXTRA}")
|
||||
|
||||
# This info is from Makefile.common
|
||||
# This info is from Makefile.am
|
||||
set(PLUGIN_NAME ${PACKAGE})
|
||||
|
||||
set(MSVC_VARIANT "${CMAKE_GENERATOR}")
|
||||
|
@ -19,7 +19,6 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
include Makefile.common
|
||||
include $(top_srcdir)/Makefile.am.inc
|
||||
|
||||
AM_CPPFLAGS = -DWS_BUILD_DLL $(INCLUDEDIRS) $(WS_CPPFLAGS) \
|
||||
@ -27,13 +26,17 @@ AM_CPPFLAGS = -DWS_BUILD_DLL $(INCLUDEDIRS) $(WS_CPPFLAGS) \
|
||||
|
||||
lib_LTLIBRARIES = libwscodecs.la
|
||||
|
||||
if HAVE_SBC
|
||||
LIBWSCODECS_SRC += sbc/sbc.c
|
||||
endif
|
||||
|
||||
# All sources that should be put in the source distribution tarball
|
||||
libwscodecs_la_SOURCES = \
|
||||
$(LIBWSCODECS_SRC)
|
||||
codecs.c \
|
||||
G711a/G711adecode.c \
|
||||
G711u/G711udecode.c \
|
||||
G722/G722decode.c \
|
||||
G726/G726decode.c
|
||||
|
||||
if HAVE_SBC
|
||||
libwscodecs_la_SOURCES += sbc/sbc.c
|
||||
endif
|
||||
|
||||
if !HAVE_SPEEXDSP
|
||||
libwscodecs_la_SOURCES += speex/resample.c
|
||||
@ -61,7 +64,6 @@ noinst_HEADERS = \
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.common \
|
||||
speex/README.txt
|
||||
|
||||
CLEANFILES = \
|
||||
@ -74,4 +76,4 @@ MAINTAINERCLEANFILES = \
|
||||
checkapi:
|
||||
$(PERL) $(top_srcdir)/tools/checkAPIs.pl -g abort -g termoutput -build \
|
||||
-sourcedir=$(srcdir) \
|
||||
$(LIBWSCODECS_SRC)
|
||||
$(libwscodecs_la_SOURCES)
|
||||
|
@ -1,29 +0,0 @@
|
||||
# Makefile.common
|
||||
# Contains the stuff from Makefile.am and Makefile.nmake that is
|
||||
# a) common to both files and
|
||||
# b) portable between both files
|
||||
#
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
|
||||
LIBWSCODECS_SRC = \
|
||||
codecs.c \
|
||||
G711a/G711adecode.c \
|
||||
G711u/G711udecode.c \
|
||||
G722/G722decode.c \
|
||||
G726/G726decode.c
|
@ -69,7 +69,7 @@ Usually, you will put your newly created dissector file into the directory
|
||||
epan/dissectors/, just like all the other packet-*.c files already in there.
|
||||
|
||||
Also, please add your dissector file to the corresponding makefiles,
|
||||
described in section "1.8 Editing Makefile.common and CMakeLists.txt
|
||||
described in section "1.8 Editing Makefile.am and CMakeLists.txt
|
||||
to add your dissector" below.
|
||||
|
||||
Dissectors that use the dissector registration API to register with a lower
|
||||
@ -627,7 +627,7 @@ generated automatically; to arrange that a protocol's register routine
|
||||
be called at startup:
|
||||
|
||||
the file containing a dissector's "register" routine must be
|
||||
added to "DISSECTOR_SRC" in "epan/dissectors/Makefile.common"
|
||||
added to "DISSECTOR_SRC" in "epan/dissectors/Makefile.am"
|
||||
(and in "epan/dissectors/CMakeLists.txt");
|
||||
|
||||
the "register" routine must have a name of the form
|
||||
@ -2217,17 +2217,17 @@ This allows dissection of a packet to be expanded outside of dissector without
|
||||
having to modify the dissector directly.
|
||||
|
||||
|
||||
1.8 Editing Makefile.common and CMakeLists.txt to add your dissector.
|
||||
1.8 Editing Makefile.am and CMakeLists.txt to add your dissector.
|
||||
|
||||
To arrange that your dissector will be built as part of Wireshark, you
|
||||
must add the name of the source file for your dissector to the
|
||||
'DISSECTOR_SRC' macro in the 'Makefile.common' file in the 'epan/dissectors'
|
||||
'DISSECTOR_SRC' macro in the 'Makefile.am' file in the 'epan/dissectors'
|
||||
directory. (Note that this is for modern versions of UNIX, so there
|
||||
is no 14-character limitation on file names, and for modern versions of
|
||||
Windows, so there is no 8.3-character limitation on file names.)
|
||||
|
||||
If your dissector also has its own header file or files, you must add
|
||||
them to the 'DISSECTOR_INCLUDES' macro in the 'Makefile.common' file in
|
||||
them to the 'DISSECTOR_INCLUDES' macro in the 'Makefile.am' file in
|
||||
the 'epan/dissectors' directory, so that it's included when release source
|
||||
tarballs are built (otherwise, the source in the release tarballs won't
|
||||
compile).
|
||||
|
@ -96,8 +96,8 @@ steps 3 or 4 instead.
|
||||
following files to include the packet-test-idl.c
|
||||
|
||||
cp packet-test-idl.c /dir/where/wireshark/lives/epan/dissectors/
|
||||
edit epan/dissectors/Makefile.common
|
||||
edit epan/CMakeLists.txt
|
||||
edit epan/dissectors/Makefile.am
|
||||
edit epan/dissectors/CMakeLists.txt
|
||||
|
||||
6. Run configure
|
||||
|
||||
|
@ -22,7 +22,6 @@ COPYING
|
||||
ChangeLog
|
||||
CMakeLists.txt
|
||||
Makefile.am
|
||||
Makefile.common
|
||||
moduleinfo.h
|
||||
plugin.rc.in
|
||||
|
||||
@ -47,9 +46,7 @@ For your plugins/foo/Makefile.am file, see the corresponding file in
|
||||
plugins/gryphon. Replace all occurrences of "gryphon" in those files
|
||||
with "foo".
|
||||
|
||||
2.4 Makefile.common
|
||||
|
||||
Your plugins/foo/Makefile.common should only list the main source file(s),
|
||||
Your plugins/foo/Makefile.am also needs to list the main source file(s),
|
||||
which exports register_*() and handoff_*(), for your dissector in the
|
||||
DISSECTOR_SRC variable. All other supporting source files should be
|
||||
listed in the DISSECTOR_SUPPORT_SRC variable.
|
||||
@ -57,12 +54,12 @@ The header files for your dissector, if any, must be listed in the
|
||||
DISSECTOR_INCLUDES variable. The DISSECTOR_INCLUDES variable should not
|
||||
include moduleinfo.h.
|
||||
|
||||
2.5 moduleinfo.h
|
||||
2.4 moduleinfo.h
|
||||
|
||||
Your plugins/foo/moduleinfo.h file is used to set the version information
|
||||
for the plugin.
|
||||
|
||||
2.6 plugin.rc.in
|
||||
2.5 plugin.rc.in
|
||||
|
||||
Your plugins/foo/plugin.rc.in is the Windows resource template file used
|
||||
to add the plugin specific information as resources to the DLL.
|
||||
@ -288,9 +285,6 @@ is encouraged to update their plugins as outlined below:
|
||||
|
||||
o Remove the init function.
|
||||
|
||||
o Add a new Makefile.common file with the lists of source files and
|
||||
headers.
|
||||
|
||||
o Change the Makefile.am file to match the one of the DOCSIS plugin.
|
||||
|
||||
|
||||
|
@ -184,7 +184,7 @@ https://www.wireshark.org/docs/wsdg_html_chunked/ChUIQt.html
|
||||
|
||||
Qt makes translating the Wireshark UI into different languages easy.
|
||||
|
||||
- Add your translation (ui/qt/wireshark_XX.ts) in ui/qt/Makefile.common and ui/qt/CMakeLists.txt
|
||||
- Add your translation (ui/qt/wireshark_XX.ts) in ui/qt/Makefile.am and ui/qt/CMakeLists.txt
|
||||
- Please add flag (image) for your language in images/languages/XX.svg and image/languages/languages.qrc
|
||||
- Run "lupdate ui/qt -ts ui/qt/wireshark_XX.ts" to generate/update your translation file.
|
||||
- Translate with Qt Linguist (in console: "linguist ui/qt/wireshark_XX.ts")
|
||||
|
@ -46,7 +46,7 @@ by the make process, generated from the lists in epan/wslua/CMakeLists.txt.
|
||||
Naturally if you add new source files, you need to add them to the list in
|
||||
epan/wslua/CMakeLists.txt and epan/wslua/Makefile.am. You also have to add
|
||||
the module name into docbook/user-guide.xml and docbook/wsluarm.xml, and the
|
||||
source files into docbook/CMakeLists.txt and docbook/Makefile.common, to get
|
||||
source files into docbook/CMakeLists.txt and docbook/Makefile.am, to get
|
||||
it to be generated in the user guide.
|
||||
|
||||
Another Perl script is used as well, called 'make-init-lua.pl', which
|
||||
@ -293,7 +293,7 @@ WSLUA_CONTINUE_MODULE - like WSLUA_MODULE, except used at the top of a .c file
|
||||
to continue defining classes/functions/etc. within a previously declared module
|
||||
in a previous file (i.e., one that used WSLUA_MODULE). The module name must match
|
||||
the original one, and the .c file must be listed after the original one in the
|
||||
CMakeLists.txt/Makefile.common lists in the docbook directory.
|
||||
CMakeLists.txt/Makefile.am lists in the docbook directory.
|
||||
|
||||
|
||||
WSLUA_ATTRIBUTE - this is another documentation-only "macro", only used within
|
||||
|
@ -16,7 +16,324 @@ A2X_TEXT_OPTS=
|
||||
|
||||
############### YOU SHOULDN'T HAVE TO EDIT ANYTHING BELOW THIS LINE! ################
|
||||
|
||||
include Makefile.common
|
||||
WSUG_FILES = \
|
||||
wsug_src/WSUG_app_files.asciidoc \
|
||||
wsug_src/WSUG_app_howitworks.asciidoc \
|
||||
wsug_src/WSUG_app_messages.asciidoc \
|
||||
wsug_src/WSUG_app_protocols.asciidoc \
|
||||
wsug_src/WSUG_app_tools.asciidoc \
|
||||
wsug_src/WSUG_chapter_advanced.asciidoc \
|
||||
wsug_src/WSUG_chapter_build_install.asciidoc \
|
||||
wsug_src/WSUG_chapter_capture.asciidoc \
|
||||
wsug_src/WSUG_chapter_customize.asciidoc \
|
||||
wsug_src/WSUG_chapter_introduction.asciidoc \
|
||||
wsug_src/WSUG_chapter_io.asciidoc \
|
||||
wsug_src/WSUG_chapter_statistics.asciidoc \
|
||||
wsug_src/WSUG_chapter_telephony.asciidoc \
|
||||
wsug_src/WSUG_chapter_troubleshoot.asciidoc \
|
||||
wsug_src/WSUG_chapter_use.asciidoc \
|
||||
wsug_src/WSUG_chapter_work.asciidoc \
|
||||
wsug_src/WSUG_preface.asciidoc \
|
||||
ws.css
|
||||
|
||||
WSUG_GENERATED_SOURCE = \
|
||||
user-guide.xml
|
||||
|
||||
WSUG_GRAPHICS = \
|
||||
wsug_graphics/captureOptions.png \
|
||||
wsug_graphics/related-ack.png \
|
||||
wsug_graphics/related-dup-ack.png \
|
||||
wsug_graphics/related-last.png \
|
||||
wsug_graphics/related-request.png \
|
||||
wsug_graphics/related-segment.png \
|
||||
wsug_graphics/related-current.png \
|
||||
wsug_graphics/related-first.png \
|
||||
wsug_graphics/related-other.png \
|
||||
wsug_graphics/related-response.png \
|
||||
wsug_graphics/ws-analyze-menu.png \
|
||||
wsug_graphics/ws-bytes-pane-tabs.png \
|
||||
wsug_graphics/ws-bytes-pane.png \
|
||||
wsug_graphics/ws-capture-info.png \
|
||||
wsug_graphics/ws-capture-interfaces.png \
|
||||
wsug_graphics/ws-capture-interface-details.png \
|
||||
wsug_graphics/ws-capture-interfaces-win32.png \
|
||||
wsug_graphics/ws-capture-menu.png \
|
||||
wsug_graphics/ws-capture-options.png \
|
||||
wsug_graphics/ws-capture-options-compile-selected-bpfs.png \
|
||||
wsug_graphics/ws-capture-options-manage-interfaces-local.png \
|
||||
wsug_graphics/ws-capture-options-manage-interfaces-pipes.png \
|
||||
wsug_graphics/ws-capture-options-manage-interfaces-remote-plus.png \
|
||||
wsug_graphics/ws-capture-options-manage-interfaces-remote.png \
|
||||
wsug_graphics/ws-capture-options-manage-interfaces.png \
|
||||
wsug_graphics/ws-capture-options-remote-capture.png \
|
||||
wsug_graphics/ws-capture-options-remote-interface.png \
|
||||
wsug_graphics/ws-capture-options-remote-settings.png \
|
||||
wsug_graphics/ws-capture-options-settings.png \
|
||||
wsug_graphics/ws-capture-preferences.png \
|
||||
wsug_graphics/ws-choose-color-rule.png \
|
||||
wsug_graphics/ws-coloring-fields.png \
|
||||
wsug_graphics/ws-coloring-rules-dialog.png \
|
||||
wsug_graphics/ws-column-header-popup-menu.png \
|
||||
wsug_graphics/ws-decode-as-show.png \
|
||||
wsug_graphics/ws-decode-as.png \
|
||||
wsug_graphics/ws-details-pane-popup-menu.png \
|
||||
wsug_graphics/ws-details-pane.png \
|
||||
wsug_graphics/ws-display-filter-tcp.png \
|
||||
wsug_graphics/ws-edit-menu.png \
|
||||
wsug_graphics/ws-enabled-protocols.png \
|
||||
wsug_graphics/ws-expert-colored-tree.png \
|
||||
wsug_graphics/ws-expert-column.png \
|
||||
wsug_graphics/ws-expert-infos.png \
|
||||
wsug_graphics/ws-export-objects.png \
|
||||
wsug_graphics/ws-export-pdml.png \
|
||||
wsug_graphics/ws-export-plain.png \
|
||||
wsug_graphics/ws-export-ps.png \
|
||||
wsug_graphics/ws-export-psml.png \
|
||||
wsug_graphics/ws-export-selected.png \
|
||||
wsug_graphics/ws-file-import.png \
|
||||
wsug_graphics/ws-file-menu.png \
|
||||
wsug_graphics/ws-file-set-dialog.png \
|
||||
wsug_graphics/ws-filter-add-expression.png \
|
||||
wsug_graphics/ws-filter-toolbar.png \
|
||||
wsug_graphics/ws-filters.png \
|
||||
wsug_graphics/ws-find-packet.png \
|
||||
wsug_graphics/ws-follow-stream.png \
|
||||
wsug_graphics/ws-go-menu.png \
|
||||
wsug_graphics/ws-goto-packet.png \
|
||||
wsug_graphics/ws-gui-colors-preferences.png \
|
||||
wsug_graphics/ws-gui-columns-preferences.png \
|
||||
wsug_graphics/ws-gui-config-profiles.png \
|
||||
wsug_graphics/ws-gui-font-preferences.png \
|
||||
wsug_graphics/ws-gui-interface-options.png \
|
||||
wsug_graphics/ws-gui-layout-preferences.png \
|
||||
wsug_graphics/ws-gui-preferences.png \
|
||||
wsug_graphics/ws-help-menu.png \
|
||||
wsug_graphics/ws-internals-menu.png \
|
||||
wsug_graphics/ws-list-pane.png \
|
||||
wsug_graphics/ws-logo.png \
|
||||
wsug_graphics/ws-main-toolbar.png \
|
||||
wsug_graphics/ws-main.png \
|
||||
wsug_graphics/ws-menu.png \
|
||||
wsug_graphics/ws-merge-gtk24.png \
|
||||
wsug_graphics/ws-merge-win32.png \
|
||||
wsug_graphics/ws-nameresolution-preferences.png \
|
||||
wsug_graphics/ws-open-gtk24.png \
|
||||
wsug_graphics/ws-open-win32.png \
|
||||
wsug_graphics/ws-packet-format.png \
|
||||
wsug_graphics/ws-packet-pane-popup-menu.png \
|
||||
wsug_graphics/ws-packet-range.png \
|
||||
wsug_graphics/ws-packet-selected.png \
|
||||
wsug_graphics/ws-packet-sep-win.png \
|
||||
wsug_graphics/ws-print.png \
|
||||
wsug_graphics/ws-printing-preferences.png \
|
||||
wsug_graphics/ws-save-as-gtk24.png \
|
||||
wsug_graphics/ws-save-as-win32.png \
|
||||
wsug_graphics/ws-statistics-menu.png \
|
||||
wsug_graphics/ws-stats-compare.png \
|
||||
wsug_graphics/ws-stats-conversations.png \
|
||||
wsug_graphics/ws-stats-endpoints.png \
|
||||
wsug_graphics/ws-stats-hierarchy.png \
|
||||
wsug_graphics/ws-stats-iographs.png \
|
||||
wsug_graphics/ws-stats-srt-dcerpc-filter.png \
|
||||
wsug_graphics/ws-stats-srt-dcerpc.png \
|
||||
wsug_graphics/ws-stats-summary.png \
|
||||
wsug_graphics/ws-stats-lte-mac-traffic.png \
|
||||
wsug_graphics/ws-stats-lte-rlc-traffic.png \
|
||||
wsug_graphics/ws-stats-wlan-traffic.png \
|
||||
wsug_graphics/ws-statusbar-empty.png \
|
||||
wsug_graphics/ws-statusbar-filter.png \
|
||||
wsug_graphics/ws-statusbar-loaded.png \
|
||||
wsug_graphics/ws-statusbar-profile.png \
|
||||
wsug_graphics/ws-statusbar-selected.png \
|
||||
wsug_graphics/ws-tel-rtpstream-analysis.png \
|
||||
wsug_graphics/ws-telephony-menu.png \
|
||||
wsug_graphics/ws-tools-menu.png \
|
||||
wsug_graphics/ws-time-reference.png \
|
||||
wsug_graphics/ws-view-menu.png \
|
||||
wsug_graphics/toolbar/autoscroll_24.png \
|
||||
wsug_graphics/toolbar/capture_filter_24.png \
|
||||
wsug_graphics/toolbar/capture_interfaces_24.png \
|
||||
wsug_graphics/toolbar/capture_options_24.png \
|
||||
wsug_graphics/toolbar/capture_restart_24.png \
|
||||
wsug_graphics/toolbar/capture_start_24.png \
|
||||
wsug_graphics/toolbar/capture_stop_24.png \
|
||||
wsug_graphics/toolbar/colorize_24.png \
|
||||
wsug_graphics/toolbar/display_filter_24.png \
|
||||
wsug_graphics/toolbar/resize_columns_24.png \
|
||||
wsug_graphics/toolbar/stock_add_24.png \
|
||||
wsug_graphics/toolbar/stock_apply_20.png \
|
||||
wsug_graphics/toolbar/stock_bottom_24.png \
|
||||
wsug_graphics/toolbar/stock_clear_24.png \
|
||||
wsug_graphics/toolbar/stock_close_24.png \
|
||||
wsug_graphics/toolbar/stock_colorselector_24.png \
|
||||
wsug_graphics/toolbar/stock_help_24.png \
|
||||
wsug_graphics/toolbar/stock_jump_to_24.png \
|
||||
wsug_graphics/toolbar/stock_left_arrow_24.png \
|
||||
wsug_graphics/toolbar/stock_open_24.png \
|
||||
wsug_graphics/toolbar/stock_preferences_24.png \
|
||||
wsug_graphics/toolbar/stock_print_24.png \
|
||||
wsug_graphics/toolbar/stock_properties_24.png \
|
||||
wsug_graphics/toolbar/stock_refresh_24.png \
|
||||
wsug_graphics/toolbar/stock_right_arrow_24.png \
|
||||
wsug_graphics/toolbar/stock_save_24.png \
|
||||
wsug_graphics/toolbar/stock_save_as_24.png \
|
||||
wsug_graphics/toolbar/stock_search_24.png \
|
||||
wsug_graphics/toolbar/stock_stop_24.png \
|
||||
wsug_graphics/toolbar/stock_top_24.png \
|
||||
wsug_graphics/toolbar/stock_zoom_1_24.png \
|
||||
wsug_graphics/toolbar/stock_zoom_in_24.png \
|
||||
wsug_graphics/toolbar/stock_zoom_out_24.png
|
||||
|
||||
WSDG_FILES = \
|
||||
wsdg_src/WSDG_chapter_build_intro.asciidoc \
|
||||
wsdg_src/WSDG_chapter_capture.asciidoc \
|
||||
wsdg_src/WSDG_chapter_dissection.asciidoc \
|
||||
wsdg_src/WSDG_chapter_env_intro.asciidoc \
|
||||
wsdg_src/WSDG_chapter_libraries.asciidoc \
|
||||
wsdg_src/WSDG_chapter_quick_setup.asciidoc \
|
||||
wsdg_src/WSDG_chapter_sources.asciidoc \
|
||||
wsdg_src/WSDG_chapter_tools.asciidoc \
|
||||
wsdg_src/WSDG_chapter_userinterface.asciidoc \
|
||||
wsdg_src/WSDG_chapter_works.asciidoc \
|
||||
wsdg_src/WSDG_preface.asciidoc \
|
||||
wsluarm.asciidoc \
|
||||
ws.css
|
||||
|
||||
WSDG_GENERATED_SOURCE = \
|
||||
developer-guide.xml
|
||||
|
||||
WSDG_GRAPHICS = \
|
||||
wsdg_graphics/ws-capture-sync.dia \
|
||||
wsdg_graphics/ws-capture-sync.png \
|
||||
wsdg_graphics/ws-capture_internals.dia \
|
||||
wsdg_graphics/ws-capture_internals.png \
|
||||
wsdg_graphics/ws-function-blocks.dia \
|
||||
wsdg_graphics/ws-function-blocks.png \
|
||||
wsdg_graphics/ws-logo.png \
|
||||
wsdg_graphics/toolbar/dummy.dummy
|
||||
|
||||
COMMON_GRAPHICS = \
|
||||
common_graphics/note.svg \
|
||||
common_graphics/tip.svg \
|
||||
common_graphics/warning.svg
|
||||
|
||||
# user-guide.xml must be first in the list (to match $<)
|
||||
WSUG_DIST = \
|
||||
user-guide.asciidoc \
|
||||
GPL_appendix.asciidoc \
|
||||
custom_layer_chm.xsl \
|
||||
custom_layer_pdf.xsl \
|
||||
$(WSUG_FILES) \
|
||||
$(WSUG_GRAPHICS) \
|
||||
$(COMMON_GRAPHICS)
|
||||
|
||||
WSUG_SOURCE = $(WSUG_GENERATED_SOURCE) $(WSUG_DIST)
|
||||
|
||||
# developer-guide.asciidoc must be first in the list (to match $<)
|
||||
WSDG_DIST = \
|
||||
developer-guide.asciidoc \
|
||||
GPL_appendix.asciidoc \
|
||||
custom_layer_chm.xsl \
|
||||
custom_layer_pdf.xsl \
|
||||
$(WSDG_FILES) \
|
||||
$(WSDG_GRAPHICS) \
|
||||
$(COMMON_GRAPHICS)
|
||||
|
||||
WSDG_SOURCE = $(WSDG_GENERATED_SOURCE) $(WSDG_DIST)
|
||||
|
||||
RELEASE_NOTES_SOURCE = \
|
||||
release-notes.asciidoc \
|
||||
asciidoc.conf \
|
||||
asciidoctor-asciidoc.conf
|
||||
|
||||
CLEANFILES = \
|
||||
*.chm \
|
||||
*.fo \
|
||||
*.hhc \
|
||||
*.hhp \
|
||||
*.pdf \
|
||||
$(WSDG_GENERATED_SOURCE) \
|
||||
$(WSUG_GENERATED_SOURCE) \
|
||||
wsdg_chm \
|
||||
wsdg_html.zip \
|
||||
wsdg_html_chunked.zip \
|
||||
wsug_chm \
|
||||
wsug_html.zip \
|
||||
wsug_html_chunked.zip \
|
||||
htmlhelp.* \
|
||||
release_notes_chm \
|
||||
release-notes.html \
|
||||
release-notes.txt \
|
||||
user-guide.zip \
|
||||
wsluarm
|
||||
|
||||
CLEANDIRS = \
|
||||
wsdg_html \
|
||||
wsdg_html_chunked \
|
||||
wsug_html \
|
||||
wsug_html_chunked \
|
||||
wsluarm_src
|
||||
|
||||
# Note: file order here MATTERS!
|
||||
# new WSLUA_MODULE files must come right before any WSLUA_CONTINUE_MODULE
|
||||
# files for the same module
|
||||
WSLUA_MODULES = \
|
||||
$(top_srcdir)/epan/wslua/wslua_dumper.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_field.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_gui.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_listener.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_pinfo.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_address.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_column.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_nstime.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_proto.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_dissector.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_pref.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_proto_expert.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_proto_field.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_int64.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_struct.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_tree.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_tvb.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_byte_array.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_file.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_file_handler.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_frame_info.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_capture_info.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_dir.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_util.c
|
||||
|
||||
COMMON_XSLTPROC_ARGS = \
|
||||
--stringparam use.id.as.filename 1 \
|
||||
--stringparam admon.graphics 1 \
|
||||
--stringparam admon.graphics.extension .svg \
|
||||
--stringparam section.autolabel 1 \
|
||||
--stringparam section.label.includes.component.label 1 \
|
||||
--stringparam html.stylesheet ws.css
|
||||
|
||||
WSUG_XSLTPROC_ARGS = \
|
||||
--stringparam admon.graphics.path wsug_graphics/
|
||||
|
||||
WSUG_PDF_XSLTPROC_ARGS = \
|
||||
--stringparam img.src.path $(srcdir)/ \
|
||||
--stringparam admon.graphics.path $(srcdir)/common_graphics/
|
||||
|
||||
WSDG_XSLTPROC_ARGS = \
|
||||
--stringparam admon.graphics.path wsdg_graphics/
|
||||
|
||||
WSDG_PDF_XSLTPROC_ARGS = \
|
||||
--stringparam img.src.path $(srcdir)/ \
|
||||
--stringparam admon.graphics.path $(srcdir)/common_graphics/
|
||||
|
||||
SINGLE_XSLTPROC_ARGS = \
|
||||
--nonet http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl
|
||||
|
||||
CHUNKED_XSLTPROC_ARGS = \
|
||||
--nonet http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl
|
||||
|
||||
HTMLHELP_XSLTPROC_ARGS = \
|
||||
--nonet custom_layer_chm.xsl
|
||||
# --nonet http://docbook.sourceforge.net/release/xsl/current/htmlhelp/htmlhelp.xsl
|
||||
|
||||
# Automatically generate .pdf files from .fo files
|
||||
# Suse needs FOP_OPTS, Debian needs JAVA_OPTS
|
||||
|
@ -1,323 +0,0 @@
|
||||
#
|
||||
|
||||
WSUG_FILES = \
|
||||
wsug_src/WSUG_app_files.asciidoc \
|
||||
wsug_src/WSUG_app_howitworks.asciidoc \
|
||||
wsug_src/WSUG_app_messages.asciidoc \
|
||||
wsug_src/WSUG_app_protocols.asciidoc \
|
||||
wsug_src/WSUG_app_tools.asciidoc \
|
||||
wsug_src/WSUG_chapter_advanced.asciidoc \
|
||||
wsug_src/WSUG_chapter_build_install.asciidoc \
|
||||
wsug_src/WSUG_chapter_capture.asciidoc \
|
||||
wsug_src/WSUG_chapter_customize.asciidoc \
|
||||
wsug_src/WSUG_chapter_introduction.asciidoc \
|
||||
wsug_src/WSUG_chapter_io.asciidoc \
|
||||
wsug_src/WSUG_chapter_statistics.asciidoc \
|
||||
wsug_src/WSUG_chapter_telephony.asciidoc \
|
||||
wsug_src/WSUG_chapter_troubleshoot.asciidoc \
|
||||
wsug_src/WSUG_chapter_use.asciidoc \
|
||||
wsug_src/WSUG_chapter_work.asciidoc \
|
||||
wsug_src/WSUG_preface.asciidoc \
|
||||
ws.css
|
||||
|
||||
WSUG_GENERATED_SOURCE = \
|
||||
user-guide.xml
|
||||
|
||||
WSUG_GRAPHICS = \
|
||||
wsug_graphics/captureOptions.png \
|
||||
wsug_graphics/related-ack.png \
|
||||
wsug_graphics/related-dup-ack.png \
|
||||
wsug_graphics/related-last.png \
|
||||
wsug_graphics/related-request.png \
|
||||
wsug_graphics/related-segment.png \
|
||||
wsug_graphics/related-current.png \
|
||||
wsug_graphics/related-first.png \
|
||||
wsug_graphics/related-other.png \
|
||||
wsug_graphics/related-response.png \
|
||||
wsug_graphics/ws-analyze-menu.png \
|
||||
wsug_graphics/ws-bytes-pane-tabs.png \
|
||||
wsug_graphics/ws-bytes-pane.png \
|
||||
wsug_graphics/ws-capture-info.png \
|
||||
wsug_graphics/ws-capture-interfaces.png \
|
||||
wsug_graphics/ws-capture-interface-details.png \
|
||||
wsug_graphics/ws-capture-interfaces-win32.png \
|
||||
wsug_graphics/ws-capture-menu.png \
|
||||
wsug_graphics/ws-capture-options.png \
|
||||
wsug_graphics/ws-capture-options-compile-selected-bpfs.png \
|
||||
wsug_graphics/ws-capture-options-manage-interfaces-local.png \
|
||||
wsug_graphics/ws-capture-options-manage-interfaces-pipes.png \
|
||||
wsug_graphics/ws-capture-options-manage-interfaces-remote-plus.png \
|
||||
wsug_graphics/ws-capture-options-manage-interfaces-remote.png \
|
||||
wsug_graphics/ws-capture-options-manage-interfaces.png \
|
||||
wsug_graphics/ws-capture-options-remote-capture.png \
|
||||
wsug_graphics/ws-capture-options-remote-interface.png \
|
||||
wsug_graphics/ws-capture-options-remote-settings.png \
|
||||
wsug_graphics/ws-capture-options-settings.png \
|
||||
wsug_graphics/ws-capture-preferences.png \
|
||||
wsug_graphics/ws-choose-color-rule.png \
|
||||
wsug_graphics/ws-coloring-fields.png \
|
||||
wsug_graphics/ws-coloring-rules-dialog.png \
|
||||
wsug_graphics/ws-column-header-popup-menu.png \
|
||||
wsug_graphics/ws-decode-as-show.png \
|
||||
wsug_graphics/ws-decode-as.png \
|
||||
wsug_graphics/ws-details-pane-popup-menu.png \
|
||||
wsug_graphics/ws-details-pane.png \
|
||||
wsug_graphics/ws-display-filter-tcp.png \
|
||||
wsug_graphics/ws-edit-menu.png \
|
||||
wsug_graphics/ws-enabled-protocols.png \
|
||||
wsug_graphics/ws-expert-colored-tree.png \
|
||||
wsug_graphics/ws-expert-column.png \
|
||||
wsug_graphics/ws-expert-infos.png \
|
||||
wsug_graphics/ws-export-objects.png \
|
||||
wsug_graphics/ws-export-pdml.png \
|
||||
wsug_graphics/ws-export-plain.png \
|
||||
wsug_graphics/ws-export-ps.png \
|
||||
wsug_graphics/ws-export-psml.png \
|
||||
wsug_graphics/ws-export-selected.png \
|
||||
wsug_graphics/ws-file-import.png \
|
||||
wsug_graphics/ws-file-menu.png \
|
||||
wsug_graphics/ws-file-set-dialog.png \
|
||||
wsug_graphics/ws-filter-add-expression.png \
|
||||
wsug_graphics/ws-filter-toolbar.png \
|
||||
wsug_graphics/ws-filters.png \
|
||||
wsug_graphics/ws-find-packet.png \
|
||||
wsug_graphics/ws-follow-stream.png \
|
||||
wsug_graphics/ws-go-menu.png \
|
||||
wsug_graphics/ws-goto-packet.png \
|
||||
wsug_graphics/ws-gui-colors-preferences.png \
|
||||
wsug_graphics/ws-gui-columns-preferences.png \
|
||||
wsug_graphics/ws-gui-config-profiles.png \
|
||||
wsug_graphics/ws-gui-font-preferences.png \
|
||||
wsug_graphics/ws-gui-interface-options.png \
|
||||
wsug_graphics/ws-gui-layout-preferences.png \
|
||||
wsug_graphics/ws-gui-preferences.png \
|
||||
wsug_graphics/ws-help-menu.png \
|
||||
wsug_graphics/ws-internals-menu.png \
|
||||
wsug_graphics/ws-list-pane.png \
|
||||
wsug_graphics/ws-logo.png \
|
||||
wsug_graphics/ws-main-toolbar.png \
|
||||
wsug_graphics/ws-main.png \
|
||||
wsug_graphics/ws-menu.png \
|
||||
wsug_graphics/ws-merge-gtk24.png \
|
||||
wsug_graphics/ws-merge-win32.png \
|
||||
wsug_graphics/ws-nameresolution-preferences.png \
|
||||
wsug_graphics/ws-open-gtk24.png \
|
||||
wsug_graphics/ws-open-win32.png \
|
||||
wsug_graphics/ws-packet-format.png \
|
||||
wsug_graphics/ws-packet-pane-popup-menu.png \
|
||||
wsug_graphics/ws-packet-range.png \
|
||||
wsug_graphics/ws-packet-selected.png \
|
||||
wsug_graphics/ws-packet-sep-win.png \
|
||||
wsug_graphics/ws-print.png \
|
||||
wsug_graphics/ws-printing-preferences.png \
|
||||
wsug_graphics/ws-save-as-gtk24.png \
|
||||
wsug_graphics/ws-save-as-win32.png \
|
||||
wsug_graphics/ws-statistics-menu.png \
|
||||
wsug_graphics/ws-stats-compare.png \
|
||||
wsug_graphics/ws-stats-conversations.png \
|
||||
wsug_graphics/ws-stats-endpoints.png \
|
||||
wsug_graphics/ws-stats-hierarchy.png \
|
||||
wsug_graphics/ws-stats-iographs.png \
|
||||
wsug_graphics/ws-stats-srt-dcerpc-filter.png \
|
||||
wsug_graphics/ws-stats-srt-dcerpc.png \
|
||||
wsug_graphics/ws-stats-summary.png \
|
||||
wsug_graphics/ws-stats-lte-mac-traffic.png \
|
||||
wsug_graphics/ws-stats-lte-rlc-traffic.png \
|
||||
wsug_graphics/ws-stats-wlan-traffic.png \
|
||||
wsug_graphics/ws-statusbar-empty.png \
|
||||
wsug_graphics/ws-statusbar-filter.png \
|
||||
wsug_graphics/ws-statusbar-loaded.png \
|
||||
wsug_graphics/ws-statusbar-profile.png \
|
||||
wsug_graphics/ws-statusbar-selected.png \
|
||||
wsug_graphics/ws-tel-rtpstream-analysis.png \
|
||||
wsug_graphics/ws-telephony-menu.png \
|
||||
wsug_graphics/ws-tools-menu.png \
|
||||
wsug_graphics/ws-time-reference.png \
|
||||
wsug_graphics/ws-view-menu.png \
|
||||
wsug_graphics/toolbar/autoscroll_24.png \
|
||||
wsug_graphics/toolbar/capture_filter_24.png \
|
||||
wsug_graphics/toolbar/capture_interfaces_24.png \
|
||||
wsug_graphics/toolbar/capture_options_24.png \
|
||||
wsug_graphics/toolbar/capture_restart_24.png \
|
||||
wsug_graphics/toolbar/capture_start_24.png \
|
||||
wsug_graphics/toolbar/capture_stop_24.png \
|
||||
wsug_graphics/toolbar/colorize_24.png \
|
||||
wsug_graphics/toolbar/display_filter_24.png \
|
||||
wsug_graphics/toolbar/resize_columns_24.png \
|
||||
wsug_graphics/toolbar/stock_add_24.png \
|
||||
wsug_graphics/toolbar/stock_apply_20.png \
|
||||
wsug_graphics/toolbar/stock_bottom_24.png \
|
||||
wsug_graphics/toolbar/stock_clear_24.png \
|
||||
wsug_graphics/toolbar/stock_close_24.png \
|
||||
wsug_graphics/toolbar/stock_colorselector_24.png \
|
||||
wsug_graphics/toolbar/stock_help_24.png \
|
||||
wsug_graphics/toolbar/stock_jump_to_24.png \
|
||||
wsug_graphics/toolbar/stock_left_arrow_24.png \
|
||||
wsug_graphics/toolbar/stock_open_24.png \
|
||||
wsug_graphics/toolbar/stock_preferences_24.png \
|
||||
wsug_graphics/toolbar/stock_print_24.png \
|
||||
wsug_graphics/toolbar/stock_properties_24.png \
|
||||
wsug_graphics/toolbar/stock_refresh_24.png \
|
||||
wsug_graphics/toolbar/stock_right_arrow_24.png \
|
||||
wsug_graphics/toolbar/stock_save_24.png \
|
||||
wsug_graphics/toolbar/stock_save_as_24.png \
|
||||
wsug_graphics/toolbar/stock_search_24.png \
|
||||
wsug_graphics/toolbar/stock_stop_24.png \
|
||||
wsug_graphics/toolbar/stock_top_24.png \
|
||||
wsug_graphics/toolbar/stock_zoom_1_24.png \
|
||||
wsug_graphics/toolbar/stock_zoom_in_24.png \
|
||||
wsug_graphics/toolbar/stock_zoom_out_24.png
|
||||
|
||||
WSDG_FILES = \
|
||||
wsdg_src/WSDG_chapter_build_intro.asciidoc \
|
||||
wsdg_src/WSDG_chapter_capture.asciidoc \
|
||||
wsdg_src/WSDG_chapter_dissection.asciidoc \
|
||||
wsdg_src/WSDG_chapter_env_intro.asciidoc \
|
||||
wsdg_src/WSDG_chapter_libraries.asciidoc \
|
||||
wsdg_src/WSDG_chapter_quick_setup.asciidoc \
|
||||
wsdg_src/WSDG_chapter_sources.asciidoc \
|
||||
wsdg_src/WSDG_chapter_tools.asciidoc \
|
||||
wsdg_src/WSDG_chapter_userinterface.asciidoc \
|
||||
wsdg_src/WSDG_chapter_works.asciidoc \
|
||||
wsdg_src/WSDG_preface.asciidoc \
|
||||
wsluarm.asciidoc \
|
||||
ws.css
|
||||
|
||||
WSDG_GENERATED_SOURCE = \
|
||||
developer-guide.xml
|
||||
|
||||
WSDG_GRAPHICS = \
|
||||
wsdg_graphics/ws-capture-sync.dia \
|
||||
wsdg_graphics/ws-capture-sync.png \
|
||||
wsdg_graphics/ws-capture_internals.dia \
|
||||
wsdg_graphics/ws-capture_internals.png \
|
||||
wsdg_graphics/ws-function-blocks.dia \
|
||||
wsdg_graphics/ws-function-blocks.png \
|
||||
wsdg_graphics/ws-logo.png \
|
||||
wsdg_graphics/toolbar/dummy.dummy
|
||||
|
||||
COMMON_GRAPHICS = \
|
||||
common_graphics/note.svg \
|
||||
common_graphics/tip.svg \
|
||||
common_graphics/warning.svg
|
||||
|
||||
# user-guide.xml must be first in the list (to match $<)
|
||||
WSUG_DIST = \
|
||||
user-guide.asciidoc \
|
||||
GPL_appendix.asciidoc \
|
||||
custom_layer_chm.xsl \
|
||||
custom_layer_pdf.xsl \
|
||||
Makefile.common \
|
||||
$(WSUG_FILES) \
|
||||
$(WSUG_GRAPHICS) \
|
||||
$(COMMON_GRAPHICS)
|
||||
|
||||
WSUG_SOURCE = $(WSUG_GENERATED_SOURCE) $(WSUG_DIST)
|
||||
|
||||
# developer-guide.asciidoc must be first in the list (to match $<)
|
||||
WSDG_DIST = \
|
||||
developer-guide.asciidoc \
|
||||
GPL_appendix.asciidoc \
|
||||
custom_layer_chm.xsl \
|
||||
custom_layer_pdf.xsl \
|
||||
Makefile.common \
|
||||
$(WSDG_FILES) \
|
||||
$(WSDG_GRAPHICS) \
|
||||
$(COMMON_GRAPHICS)
|
||||
|
||||
WSDG_SOURCE = $(WSDG_GENERATED_SOURCE) $(WSDG_DIST)
|
||||
|
||||
RELEASE_NOTES_SOURCE = \
|
||||
release-notes.asciidoc \
|
||||
Makefile.common \
|
||||
asciidoc.conf \
|
||||
asciidoctor-asciidoc.conf
|
||||
|
||||
CLEANFILES = \
|
||||
*.chm \
|
||||
*.fo \
|
||||
*.hhc \
|
||||
*.hhp \
|
||||
*.pdf \
|
||||
$(WSDG_GENERATED_SOURCE) \
|
||||
$(WSUG_GENERATED_SOURCE) \
|
||||
wsdg_chm \
|
||||
wsdg_html.zip \
|
||||
wsdg_html_chunked.zip \
|
||||
wsug_chm \
|
||||
wsug_html.zip \
|
||||
wsug_html_chunked.zip \
|
||||
htmlhelp.* \
|
||||
release_notes_chm \
|
||||
release-notes.html \
|
||||
release-notes.txt \
|
||||
user-guide.zip \
|
||||
wsluarm
|
||||
|
||||
CLEANDIRS = \
|
||||
wsdg_html \
|
||||
wsdg_html_chunked \
|
||||
wsug_html \
|
||||
wsug_html_chunked \
|
||||
wsluarm_src
|
||||
|
||||
# Note: file order here MATTERS!
|
||||
# new WSLUA_MODULE files must come right before any WSLUA_CONTINUE_MODULE
|
||||
# files for the same module
|
||||
WSLUA_MODULES = \
|
||||
$(top_srcdir)/epan/wslua/wslua_dumper.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_field.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_gui.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_listener.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_pinfo.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_address.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_column.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_nstime.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_proto.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_dissector.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_pref.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_proto_expert.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_proto_field.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_int64.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_struct.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_tree.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_tvb.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_byte_array.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_file.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_file_handler.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_frame_info.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_capture_info.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_dir.c \
|
||||
$(top_srcdir)/epan/wslua/wslua_util.c
|
||||
|
||||
COMMON_XSLTPROC_ARGS = \
|
||||
--stringparam use.id.as.filename 1 \
|
||||
--stringparam admon.graphics 1 \
|
||||
--stringparam admon.graphics.extension .svg \
|
||||
--stringparam section.autolabel 1 \
|
||||
--stringparam section.label.includes.component.label 1 \
|
||||
--stringparam html.stylesheet ws.css
|
||||
|
||||
WSUG_XSLTPROC_ARGS = \
|
||||
--stringparam admon.graphics.path wsug_graphics/
|
||||
|
||||
WSUG_PDF_XSLTPROC_ARGS = \
|
||||
--stringparam img.src.path $(srcdir)/ \
|
||||
--stringparam admon.graphics.path $(srcdir)/common_graphics/
|
||||
|
||||
WSDG_XSLTPROC_ARGS = \
|
||||
--stringparam admon.graphics.path wsdg_graphics/
|
||||
|
||||
WSDG_PDF_XSLTPROC_ARGS = \
|
||||
--stringparam img.src.path $(srcdir)/ \
|
||||
--stringparam admon.graphics.path $(srcdir)/common_graphics/
|
||||
|
||||
SINGLE_XSLTPROC_ARGS = \
|
||||
--nonet http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl
|
||||
|
||||
CHUNKED_XSLTPROC_ARGS = \
|
||||
--nonet http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl
|
||||
|
||||
HTMLHELP_XSLTPROC_ARGS = \
|
||||
--nonet custom_layer_chm.xsl
|
||||
# --nonet http://docbook.sourceforge.net/release/xsl/current/htmlhelp/htmlhelp.xsl
|
@ -172,8 +172,6 @@ are required, besides the dissector source in 'packet-foo.c':
|
||||
|
||||
* 'Makefile.am' - The UNIX/Linux makefile template.
|
||||
|
||||
* 'Makefile.common' - Contains the file names of this plugin.
|
||||
|
||||
* 'CMakeLists.txt' - Contains the CMake file and version info for this plugin.
|
||||
|
||||
* 'moduleinfo.h' - Contains plugin version information.
|
||||
@ -183,8 +181,8 @@ are required, besides the dissector source in 'packet-foo.c':
|
||||
* 'plugin.rc.in' - Contains the DLL resource template for Windows.
|
||||
|
||||
You can find a good example for these files in the gryphon plugin directory.
|
||||
'Makefile.common' and 'Makefile.am' have to be modified to reflect the relevant
|
||||
files and dissector name. 'CMakeLists.txt' has to be modified with the correct
|
||||
'Makefile.am' has to be modified to reflect the relevant files and dissector
|
||||
name. 'CMakeLists.txt' has to be modified with the correct
|
||||
plugin name and version info, along with the relevant files to compile.
|
||||
In the main top-level source directory, copy CMakeListsCustom.txt.example to
|
||||
CMakeListsCustom.txt and add the path of your plugin to the list in
|
||||
@ -1257,7 +1255,7 @@ Wireshark source directory.
|
||||
$ cp packet-test-idl.c /dir/where/wireshark/lives/epan/dissectors/
|
||||
----
|
||||
|
||||
The new dissector has to be added to Makefile.common in the same directory. Look
|
||||
The new dissector has to be added to Makefile.am in the same directory. Look
|
||||
for the declaration CLEAN_DISSECTOR_SRC and add the new dissector there. For
|
||||
example,
|
||||
|
||||
|
@ -18,30 +18,24 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
include Makefile.common
|
||||
include $(top_srcdir)/Makefile.am.inc
|
||||
|
||||
AM_CPPFLAGS = -DWS_BUILD_DLL $(INCLUDEDIRS) $(WS_CPPFLAGS) \
|
||||
$(GLIB_CFLAGS)
|
||||
|
||||
# Optional objects that I know how to build. These will be
|
||||
# linked into libechld.
|
||||
echld_optional_objects = $(LIBECHLD_SRC)
|
||||
|
||||
lib_LTLIBRARIES = libechld.la
|
||||
|
||||
libechld_la_LDFLAGS = -version-info 0:0:0 @LDFLAGS_SHAREDLIB@
|
||||
|
||||
libechld_la_SOURCES = \
|
||||
$(LIBECHLD_SRC) \
|
||||
$(LIBECHLD_INCLUDES)
|
||||
|
||||
libechld_la_DEPENDENCIES = \
|
||||
../caputils/libcaputils.a \
|
||||
../epan/libwireshark.la \
|
||||
../wiretap/libwiretap.la \
|
||||
../wsutil/libwsutil.la
|
||||
echld-util.c \
|
||||
dispatcher.c \
|
||||
child.c \
|
||||
parent.c \
|
||||
common.c \
|
||||
echld-int.h \
|
||||
echld-util.h \
|
||||
echld.h
|
||||
|
||||
libechld_la_LDFLAGS = -version-info 0:0:0 @LDFLAGS_SHAREDLIB@
|
||||
|
||||
libechld_la_LIBADD = \
|
||||
../caputils/libcaputils.a \
|
||||
@ -50,9 +44,14 @@ libechld_la_LIBADD = \
|
||||
../wiretap/libwiretap.la \
|
||||
@GLIB_LIBS@
|
||||
|
||||
libechld_la_DEPENDENCIES = \
|
||||
../caputils/libcaputils.a \
|
||||
../epan/libwireshark.la \
|
||||
../wiretap/libwiretap.la \
|
||||
../wsutil/libwsutil.la
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.common
|
||||
CMakeLists.txt
|
||||
|
||||
CLEANFILES = \
|
||||
libechld.a \
|
||||
|
@ -1,41 +0,0 @@
|
||||
# Makefile.common
|
||||
# Contains the stuff from Makefile.am and Makefile.nmake that is
|
||||
# a) common to both files and
|
||||
# b) portable between both files
|
||||
#
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
# C source files that are part of the libechld source; this includes only
|
||||
# .c files, not YACC or Lex or... files (as Makefile.nmake maps this list
|
||||
# into a list of object files by replacing ".c" with ".obj") or files
|
||||
# generated from YACC or Lex files (as Automake doesn't want them in
|
||||
# _SOURCES variables).
|
||||
LIBECHLD_SRC = \
|
||||
echld-util.c \
|
||||
dispatcher.c \
|
||||
child.c \
|
||||
parent.c \
|
||||
common.c
|
||||
|
||||
# Header files that are not generated from other files
|
||||
LIBECHLD_INCLUDES = \
|
||||
echld-int.h \
|
||||
echld-util.h \
|
||||
echld.h
|
||||
|
368
epan/Makefile.am
368
epan/Makefile.am
@ -21,7 +21,6 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
include Makefile.common
|
||||
include $(top_srcdir)/Makefile.am.inc
|
||||
|
||||
if HAVE_LIBLUA
|
||||
@ -45,77 +44,267 @@ AM_CPPFLAGS = $(INCLUDEDIRS) -I$(builddir)/wslua $(WS_CPPFLAGS) \
|
||||
|
||||
noinst_LTLIBRARIES = libwireshark_generated.la libwireshark_asmopt.la
|
||||
lib_LTLIBRARIES = libwireshark.la
|
||||
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
|
||||
libwireshark_la_LDFLAGS = -version-info 0:0:0 @LDFLAGS_SHAREDLIB@
|
||||
|
||||
LIBWIRESHARK_SRC = \
|
||||
addr_and_mask.c \
|
||||
addr_resolv.c \
|
||||
address_types.c \
|
||||
afn.c \
|
||||
aftypes.c \
|
||||
app_mem_usage.c \
|
||||
asn1.c \
|
||||
capture_dissectors.c \
|
||||
charsets.c \
|
||||
circuit.c \
|
||||
color_filters.c \
|
||||
column.c \
|
||||
column-utils.c \
|
||||
conversation.c \
|
||||
conversation_table.c \
|
||||
crc10-tvb.c \
|
||||
crc16-tvb.c \
|
||||
crc32-tvb.c \
|
||||
crc6-tvb.c \
|
||||
crc8-tvb.c \
|
||||
decode_as.c \
|
||||
disabled_protos.c \
|
||||
dissector_filters.c \
|
||||
dvb_chartbl.c \
|
||||
dwarf.c \
|
||||
epan.c \
|
||||
ex-opt.c \
|
||||
except.c \
|
||||
expert.c \
|
||||
exported_pdu.c \
|
||||
plugin_if.c \
|
||||
filter_expressions.c \
|
||||
follow.c \
|
||||
frame_data.c \
|
||||
frame_data_sequence.c \
|
||||
funnel.c \
|
||||
g_int64_hash_routines.c \
|
||||
geoip_db.c \
|
||||
golay.c \
|
||||
guid-utils.c \
|
||||
iana_charsets.c \
|
||||
in_cksum.c \
|
||||
ipproto.c \
|
||||
ipv4.c \
|
||||
next_tvb.c \
|
||||
oids.c \
|
||||
osi-utils.c \
|
||||
oui.c \
|
||||
packet-range.c \
|
||||
packet.c \
|
||||
prefs.c \
|
||||
print.c \
|
||||
print_stream.c \
|
||||
proto.c \
|
||||
proto_data.c \
|
||||
range.c \
|
||||
reassemble.c \
|
||||
reedsolomon.c \
|
||||
req_resp_hdrs.c \
|
||||
rtd_table.c \
|
||||
show_exception.c \
|
||||
sminmpec.c \
|
||||
srt_table.c \
|
||||
stat_tap_ui.c \
|
||||
stats_tree.c \
|
||||
strutil.c \
|
||||
stream.c \
|
||||
t35.c \
|
||||
tap.c \
|
||||
timestamp.c \
|
||||
timestats.c \
|
||||
tfs.c \
|
||||
to_str.c \
|
||||
tvbparse.c \
|
||||
tvbuff_base64.c \
|
||||
tvbuff_composite.c \
|
||||
tvbuff_real.c \
|
||||
tvbuff_subset.c \
|
||||
tvbuff_zlib.c \
|
||||
tvbuff.c \
|
||||
uat.c \
|
||||
value_string.c \
|
||||
xdlc.c
|
||||
|
||||
#
|
||||
# We distribute Lemon and rdps.py with Wireshark, so we don't distribute the
|
||||
# files they produce.
|
||||
#
|
||||
NODIST_LIBWIRESHARK_GENERATED_C_FILES = \
|
||||
dtd_grammar.c \
|
||||
ps.c
|
||||
|
||||
NODIST_LIBWIRESHARK_GENERATED_HEADER_FILES = \
|
||||
dtd_grammar.h
|
||||
|
||||
#
|
||||
# These don't get removed on "make distclean", as the tools we use to
|
||||
# generate them aren't part of the Wireshark distribution, and aren't
|
||||
# tools assumed to be present for any system capable of compiling
|
||||
# from a tarball (e.g., make and a C compiler are assumed to be present,
|
||||
# but Flex isn't).
|
||||
#
|
||||
LIBWIRESHARK_GENERATED_C_FILES = \
|
||||
diam_dict.c \
|
||||
dtd_parse.c \
|
||||
dtd_preparse.c \
|
||||
radius_dict.c \
|
||||
uat_load.c
|
||||
|
||||
LIBWIRESHARK_GENERATED_HEADER_FILES = \
|
||||
diam_dict_lex.h \
|
||||
dtd_parse_lex.h \
|
||||
dtd_preparse_lex.h \
|
||||
radius_dict_lex.h \
|
||||
uat_load_lex.h
|
||||
|
||||
LIBWIRESHARK_GENERATED_SRC = \
|
||||
$(LIBWIRESHARK_GENERATED_C_FILES) \
|
||||
$(NODIST_LIBWIRESHARK_GENERATED_C_FILES)
|
||||
|
||||
LIBWIRESHARK_ALL_SRC = \
|
||||
$(LIBWIRESHARK_SRC) \
|
||||
$(LIBWIRESHARK_GENERATED_SRC)
|
||||
|
||||
LIBWIRESHARK_INCLUDES = \
|
||||
addr_and_mask.h \
|
||||
addr_resolv.h \
|
||||
address.h \
|
||||
address_types.h \
|
||||
afn.h \
|
||||
aftypes.h \
|
||||
app_mem_usage.h \
|
||||
arcnet_pids.h \
|
||||
arptypes.h \
|
||||
asn1.h \
|
||||
ax25_pids.h \
|
||||
bridged_pids.h \
|
||||
capture_dissectors.h \
|
||||
charsets.h \
|
||||
chdlctypes.h \
|
||||
circuit.h \
|
||||
color_filters.h \
|
||||
column.h \
|
||||
column-info.h \
|
||||
column-utils.h \
|
||||
conversation.h \
|
||||
conversation_debug.h \
|
||||
conversation_table.h \
|
||||
conv_id.h \
|
||||
crc10-tvb.h \
|
||||
crc16-tvb.h \
|
||||
crc32-tvb.h \
|
||||
crc6-tvb.h \
|
||||
crc8-tvb.h \
|
||||
decode_as.h \
|
||||
diam_dict.h \
|
||||
disabled_protos.h \
|
||||
dissector_filters.h \
|
||||
dtd.h \
|
||||
dtd_parse.h \
|
||||
dvb_chartbl.h \
|
||||
dwarf.h \
|
||||
eap.h \
|
||||
eapol_keydes_types.h \
|
||||
epan-int.h \
|
||||
epan.h \
|
||||
epan_dissect.h \
|
||||
etypes.h \
|
||||
ex-opt.h \
|
||||
except.h \
|
||||
exceptions.h \
|
||||
expert.h \
|
||||
exported_pdu.h \
|
||||
plugin_if.h \
|
||||
filter_expressions.h \
|
||||
follow.h \
|
||||
frame_data.h \
|
||||
frame_data_sequence.h \
|
||||
funnel.h \
|
||||
g_int64_hash_routines.h \
|
||||
garrayfix.h \
|
||||
geoip_db.h \
|
||||
golay.h \
|
||||
guid-utils.h \
|
||||
iana_charsets.h \
|
||||
iax2_codec_type.h \
|
||||
in_cksum.h \
|
||||
ip_opts.h \
|
||||
ipproto.h \
|
||||
ipv4.h \
|
||||
ipv6.h \
|
||||
lapd_sapi.h \
|
||||
llcsaps.h \
|
||||
next_tvb.h \
|
||||
nlpid.h \
|
||||
oids.h \
|
||||
osi-utils.h \
|
||||
oui.h \
|
||||
packet-range.h \
|
||||
packet.h \
|
||||
packet_info.h \
|
||||
params.h \
|
||||
ppptypes.h \
|
||||
print.h \
|
||||
print_stream.h \
|
||||
prefs.h \
|
||||
prefs-int.h \
|
||||
proto.h \
|
||||
proto_data.h \
|
||||
ps.h \
|
||||
ptvcursor.h \
|
||||
range.h \
|
||||
reassemble.h \
|
||||
reedsolomon.h \
|
||||
req_resp_hdrs.h \
|
||||
rtd_table.h \
|
||||
rtp_pt.h \
|
||||
sctpppids.h \
|
||||
show_exception.h \
|
||||
slow_protocol_subtypes.h \
|
||||
sminmpec.h \
|
||||
srt_table.h \
|
||||
stat_tap_ui.h \
|
||||
stat_groups.h \
|
||||
stats_tree.h \
|
||||
stats_tree_priv.h \
|
||||
stream.h \
|
||||
strutil.h \
|
||||
t35.h \
|
||||
tap.h \
|
||||
tap-voip.h \
|
||||
timestamp.h \
|
||||
timestats.h \
|
||||
tfs.h \
|
||||
time_fmt.h \
|
||||
to_str.h \
|
||||
to_str-int.h \
|
||||
tvbparse.h \
|
||||
tvbuff.h \
|
||||
tvbuff-int.h \
|
||||
uat.h \
|
||||
uat-int.h \
|
||||
value_string.h \
|
||||
x264_prt_id.h \
|
||||
xdlc.h
|
||||
|
||||
#Since code generated by lex may trigger gcc warnings, we are now generating two
|
||||
#libraries. A single library is generated with the lex code without the barrier
|
||||
#"stop on warning". An other library is generated from the remaining source
|
||||
#files with the "stop on warning" barrier.
|
||||
libwireshark_la_SOURCES = \
|
||||
$(LIBWIRESHARK_SRC) \
|
||||
$(LIBWIRESHARK_SRC) \
|
||||
$(LIBWIRESHARK_INCLUDES) \
|
||||
ws_version_info.c
|
||||
|
||||
libwireshark_la_CPPFLAGS = $(AM_CPPFLAGS) -DWS_BUILD_DLL
|
||||
|
||||
libwireshark_generated_la_SOURCES = \
|
||||
$(LIBWIRESHARK_GENERATED_C_FILES) \
|
||||
$(LIBWIRESHARK_GENERATED_HEADER_FILES)
|
||||
|
||||
libwireshark_generated_la_CFLAGS = $(GENERATED_CFLAGS)
|
||||
|
||||
nodist_libwireshark_generated_la_SOURCES = \
|
||||
$(NODIST_LIBWIRESHARK_GENERATED_C_FILES) \
|
||||
$(NODIST_LIBWIRESHARK_GENERATED_HEADER_FILES)
|
||||
|
||||
# code optionally implemented in assembler
|
||||
# only C source available for platforms other than Win32
|
||||
libwireshark_asmopt_la_SOURCES = \
|
||||
asm_utils.c \
|
||||
asm_utils.h \
|
||||
asm_utils_win32_x86.asm
|
||||
|
||||
EXTRA_DIST = \
|
||||
.editorconfig \
|
||||
diam_dict.l \
|
||||
dtd_grammar.lemon \
|
||||
dtd_parse.l \
|
||||
dtd_parse.h \
|
||||
dtd_preparse.l \
|
||||
enterprise-numbers \
|
||||
Makefile.common \
|
||||
radius_dict.l \
|
||||
uat_load.l \
|
||||
doxygen.cfg.in \
|
||||
CMakeLists.txt \
|
||||
print.ps
|
||||
|
||||
CLEANFILES = \
|
||||
doxygen-epan.tag \
|
||||
libwireshark.a \
|
||||
libwireshark.la \
|
||||
libwireshark_generated.a \
|
||||
libwireshark_generated.la \
|
||||
libwireshark_asmopt.a \
|
||||
libwireshark_asmopt.la \
|
||||
*~
|
||||
|
||||
DISTCLEANFILES = \
|
||||
$(NODIST_LIBWIRESHARK_GENERATED_C_FILES) \
|
||||
$(NODIST_LIBWIRESHARK_GENERATED_HEADER_FILES) \
|
||||
dtd_grammar.out \
|
||||
ws_version_info.c
|
||||
|
||||
MAINTAINERCLEANFILES = \
|
||||
$(LIBWIRESHARK_GENERATED_C_FILES) \
|
||||
$(LIBWIRESHARK_GENERATED_HEADER_FILES) \
|
||||
Makefile.in
|
||||
|
||||
BUILT_SOURCES = \
|
||||
$(LIBWIRESHARK_GENERATED_HEADER_FILES) \
|
||||
$(NODIST_LIBWIRESHARK_GENERATED_HEADER_FILES) \
|
||||
ws_version_info.c
|
||||
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
|
||||
libwireshark_la_LDFLAGS = -version-info 0:0:0 @LDFLAGS_SHAREDLIB@
|
||||
|
||||
#
|
||||
# Add the object files for missing routines, if any.
|
||||
@ -158,6 +347,63 @@ libwireshark_la_DEPENDENCIES = \
|
||||
${top_builddir}/wsutil/libwsutil.la \
|
||||
${top_builddir}/wiretap/libwiretap.la
|
||||
|
||||
libwireshark_generated_la_SOURCES = \
|
||||
$(LIBWIRESHARK_GENERATED_C_FILES) \
|
||||
$(LIBWIRESHARK_GENERATED_HEADER_FILES)
|
||||
|
||||
nodist_libwireshark_generated_la_SOURCES = \
|
||||
$(NODIST_LIBWIRESHARK_GENERATED_C_FILES) \
|
||||
$(NODIST_LIBWIRESHARK_GENERATED_HEADER_FILES)
|
||||
|
||||
libwireshark_generated_la_CFLAGS = $(GENERATED_CFLAGS)
|
||||
|
||||
# code optionally implemented in assembler
|
||||
# only C source available for platforms other than Win32
|
||||
libwireshark_asmopt_la_SOURCES = \
|
||||
asm_utils.c \
|
||||
asm_utils.h \
|
||||
asm_utils_win32_x86.asm
|
||||
|
||||
EXTRA_DIST = \
|
||||
.editorconfig \
|
||||
diam_dict.l \
|
||||
dtd_grammar.lemon \
|
||||
dtd_parse.l \
|
||||
dtd_parse.h \
|
||||
dtd_preparse.l \
|
||||
enterprise-numbers \
|
||||
radius_dict.l \
|
||||
uat_load.l \
|
||||
doxygen.cfg.in \
|
||||
CMakeLists.txt \
|
||||
print.ps
|
||||
|
||||
CLEANFILES = \
|
||||
doxygen-epan.tag \
|
||||
libwireshark.a \
|
||||
libwireshark.la \
|
||||
libwireshark_generated.a \
|
||||
libwireshark_generated.la \
|
||||
libwireshark_asmopt.a \
|
||||
libwireshark_asmopt.la \
|
||||
*~
|
||||
|
||||
DISTCLEANFILES = \
|
||||
$(NODIST_LIBWIRESHARK_GENERATED_C_FILES) \
|
||||
$(NODIST_LIBWIRESHARK_GENERATED_HEADER_FILES) \
|
||||
dtd_grammar.out \
|
||||
ws_version_info.c
|
||||
|
||||
MAINTAINERCLEANFILES = \
|
||||
$(LIBWIRESHARK_GENERATED_C_FILES) \
|
||||
$(LIBWIRESHARK_GENERATED_HEADER_FILES) \
|
||||
Makefile.in
|
||||
|
||||
BUILT_SOURCES = \
|
||||
$(LIBWIRESHARK_GENERATED_HEADER_FILES) \
|
||||
$(NODIST_LIBWIRESHARK_GENERATED_HEADER_FILES) \
|
||||
ws_version_info.c
|
||||
|
||||
EXTRA_PROGRAMS = reassemble_test tvbtest oids_test exntest
|
||||
|
||||
reassemble_test_LDADD = \
|
||||
|
@ -1,269 +0,0 @@
|
||||
# Makefile.common
|
||||
# Contains the stuff from Makefile.am and Makefile.nmake that is
|
||||
# a) common to both files and
|
||||
# b) portable between both files
|
||||
#
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
|
||||
LIBWIRESHARK_SRC = \
|
||||
addr_and_mask.c \
|
||||
addr_resolv.c \
|
||||
address_types.c \
|
||||
afn.c \
|
||||
aftypes.c \
|
||||
app_mem_usage.c \
|
||||
asn1.c \
|
||||
capture_dissectors.c \
|
||||
charsets.c \
|
||||
circuit.c \
|
||||
color_filters.c \
|
||||
column.c \
|
||||
column-utils.c \
|
||||
conversation.c \
|
||||
conversation_table.c \
|
||||
crc10-tvb.c \
|
||||
crc16-tvb.c \
|
||||
crc32-tvb.c \
|
||||
crc6-tvb.c \
|
||||
crc8-tvb.c \
|
||||
decode_as.c \
|
||||
disabled_protos.c \
|
||||
dissector_filters.c \
|
||||
dvb_chartbl.c \
|
||||
dwarf.c \
|
||||
epan.c \
|
||||
ex-opt.c \
|
||||
except.c \
|
||||
expert.c \
|
||||
exported_pdu.c \
|
||||
plugin_if.c \
|
||||
filter_expressions.c \
|
||||
follow.c \
|
||||
frame_data.c \
|
||||
frame_data_sequence.c \
|
||||
funnel.c \
|
||||
g_int64_hash_routines.c \
|
||||
geoip_db.c \
|
||||
golay.c \
|
||||
guid-utils.c \
|
||||
iana_charsets.c \
|
||||
in_cksum.c \
|
||||
ipproto.c \
|
||||
ipv4.c \
|
||||
next_tvb.c \
|
||||
oids.c \
|
||||
osi-utils.c \
|
||||
oui.c \
|
||||
packet-range.c \
|
||||
packet.c \
|
||||
prefs.c \
|
||||
print.c \
|
||||
print_stream.c \
|
||||
proto.c \
|
||||
proto_data.c \
|
||||
range.c \
|
||||
reassemble.c \
|
||||
reedsolomon.c \
|
||||
req_resp_hdrs.c \
|
||||
rtd_table.c \
|
||||
show_exception.c \
|
||||
sminmpec.c \
|
||||
srt_table.c \
|
||||
stat_tap_ui.c \
|
||||
stats_tree.c \
|
||||
strutil.c \
|
||||
stream.c \
|
||||
t35.c \
|
||||
tap.c \
|
||||
timestamp.c \
|
||||
timestats.c \
|
||||
tfs.c \
|
||||
to_str.c \
|
||||
tvbparse.c \
|
||||
tvbuff_base64.c \
|
||||
tvbuff_composite.c \
|
||||
tvbuff_real.c \
|
||||
tvbuff_subset.c \
|
||||
tvbuff_zlib.c \
|
||||
tvbuff.c \
|
||||
uat.c \
|
||||
value_string.c \
|
||||
xdlc.c
|
||||
|
||||
#
|
||||
# We distribute Lemon and rdps.py with Wireshark, so we don't distribute the
|
||||
# files they produce.
|
||||
#
|
||||
NODIST_LIBWIRESHARK_GENERATED_C_FILES = \
|
||||
dtd_grammar.c \
|
||||
ps.c
|
||||
|
||||
NODIST_LIBWIRESHARK_GENERATED_HEADER_FILES = \
|
||||
dtd_grammar.h
|
||||
|
||||
#
|
||||
# These don't get removed on "make distclean", as the tools we use to
|
||||
# generate them aren't part of the Wireshark distribution, and aren't
|
||||
# tools assumed to be present for any system capable of compiling
|
||||
# from a tarball (e.g., make and a C compiler are assumed to be present,
|
||||
# but Flex isn't).
|
||||
#
|
||||
LIBWIRESHARK_GENERATED_C_FILES = \
|
||||
diam_dict.c \
|
||||
dtd_parse.c \
|
||||
dtd_preparse.c \
|
||||
radius_dict.c \
|
||||
uat_load.c
|
||||
|
||||
LIBWIRESHARK_GENERATED_HEADER_FILES = \
|
||||
diam_dict_lex.h \
|
||||
dtd_parse_lex.h \
|
||||
dtd_preparse_lex.h \
|
||||
radius_dict_lex.h \
|
||||
uat_load_lex.h
|
||||
|
||||
LIBWIRESHARK_GENERATED_SRC = \
|
||||
$(LIBWIRESHARK_GENERATED_C_FILES) \
|
||||
$(NODIST_LIBWIRESHARK_GENERATED_C_FILES)
|
||||
|
||||
LIBWIRESHARK_ALL_SRC = \
|
||||
$(LIBWIRESHARK_SRC) \
|
||||
$(LIBWIRESHARK_GENERATED_SRC)
|
||||
|
||||
LIBWIRESHARK_INCLUDES = \
|
||||
addr_and_mask.h \
|
||||
addr_resolv.h \
|
||||
address.h \
|
||||
address_types.h \
|
||||
afn.h \
|
||||
aftypes.h \
|
||||
app_mem_usage.h \
|
||||
arcnet_pids.h \
|
||||
arptypes.h \
|
||||
asn1.h \
|
||||
ax25_pids.h \
|
||||
bridged_pids.h \
|
||||
capture_dissectors.h \
|
||||
charsets.h \
|
||||
chdlctypes.h \
|
||||
circuit.h \
|
||||
color_filters.h \
|
||||
column.h \
|
||||
column-info.h \
|
||||
column-utils.h \
|
||||
conversation.h \
|
||||
conversation_debug.h \
|
||||
conversation_table.h \
|
||||
conv_id.h \
|
||||
crc10-tvb.h \
|
||||
crc16-tvb.h \
|
||||
crc32-tvb.h \
|
||||
crc6-tvb.h \
|
||||
crc8-tvb.h \
|
||||
decode_as.h \
|
||||
diam_dict.h \
|
||||
disabled_protos.h \
|
||||
dissector_filters.h \
|
||||
dtd.h \
|
||||
dtd_parse.h \
|
||||
dvb_chartbl.h \
|
||||
dwarf.h \
|
||||
eap.h \
|
||||
eapol_keydes_types.h \
|
||||
epan-int.h \
|
||||
epan.h \
|
||||
epan_dissect.h \
|
||||
etypes.h \
|
||||
ex-opt.h \
|
||||
except.h \
|
||||
exceptions.h \
|
||||
expert.h \
|
||||
exported_pdu.h \
|
||||
plugin_if.h \
|
||||
filter_expressions.h \
|
||||
follow.h \
|
||||
frame_data.h \
|
||||
frame_data_sequence.h \
|
||||
funnel.h \
|
||||
g_int64_hash_routines.h \
|
||||
garrayfix.h \
|
||||
geoip_db.h \
|
||||
golay.h \
|
||||
guid-utils.h \
|
||||
iana_charsets.h \
|
||||
iax2_codec_type.h \
|
||||
in_cksum.h \
|
||||
ip_opts.h \
|
||||
ipproto.h \
|
||||
ipv4.h \
|
||||
ipv6.h \
|
||||
lapd_sapi.h \
|
||||
llcsaps.h \
|
||||
next_tvb.h \
|
||||
nlpid.h \
|
||||
oids.h \
|
||||
osi-utils.h \
|
||||
oui.h \
|
||||
packet-range.h \
|
||||
packet.h \
|
||||
packet_info.h \
|
||||
params.h \
|
||||
ppptypes.h \
|
||||
print.h \
|
||||
print_stream.h \
|
||||
prefs.h \
|
||||
prefs-int.h \
|
||||
proto.h \
|
||||
proto_data.h \
|
||||
ps.h \
|
||||
ptvcursor.h \
|
||||
range.h \
|
||||
reassemble.h \
|
||||
reedsolomon.h \
|
||||
req_resp_hdrs.h \
|
||||
rtd_table.h \
|
||||
rtp_pt.h \
|
||||
sctpppids.h \
|
||||
show_exception.h \
|
||||
slow_protocol_subtypes.h \
|
||||
sminmpec.h \
|
||||
srt_table.h \
|
||||
stat_tap_ui.h \
|
||||
stat_groups.h \
|
||||
stats_tree.h \
|
||||
stats_tree_priv.h \
|
||||
stream.h \
|
||||
strutil.h \
|
||||
t35.h \
|
||||
tap.h \
|
||||
tap-voip.h \
|
||||
timestamp.h \
|
||||
timestats.h \
|
||||
tfs.h \
|
||||
time_fmt.h \
|
||||
to_str.h \
|
||||
to_str-int.h \
|
||||
tvbparse.h \
|
||||
tvbuff.h \
|
||||
tvbuff-int.h \
|
||||
uat.h \
|
||||
uat-int.h \
|
||||
value_string.h \
|
||||
x264_prt_id.h \
|
||||
xdlc.h
|
@ -19,13 +19,18 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
include Makefile.common
|
||||
include $(top_srcdir)/Makefile.am.inc
|
||||
|
||||
AM_CPPFLAGS = $(INCLUDEDIRS) $(WS_CPPFLAGS) $(GLIB_CFLAGS)
|
||||
|
||||
noinst_LTLIBRARIES = liblzxpress.la
|
||||
|
||||
liblzxpress_la_SOURCES = \
|
||||
lzxpress.c \
|
||||
lzxpress.h
|
||||
|
||||
EXTRA_DIST =
|
||||
|
||||
CLEANFILES = \
|
||||
liblzxpress.a \
|
||||
liblzxpress.la \
|
||||
@ -33,16 +38,9 @@ CLEANFILES = \
|
||||
|
||||
DISTCLEANFILES =
|
||||
|
||||
MAINTAINERCLEANFILES = \
|
||||
MAINTAINERCLEANFILES = \
|
||||
Makefile.in
|
||||
|
||||
liblzxpress_la_SOURCES = \
|
||||
$(LIBLZXPRESS_SRC) \
|
||||
$(LIBLZXPRESS_INCLUDES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
Makefile.common
|
||||
|
||||
checkapi:
|
||||
$(PERL) ../../tools/checkAPIs.pl -g termoutput -build \
|
||||
$(LIBLZXPRESS_SRC)
|
||||
$(liblzxpress_la_SOURCES)
|
||||
|
@ -1,28 +0,0 @@
|
||||
# Makefile.common
|
||||
# Contains the stuff from Makefile.am and Makefile.nmake that is
|
||||
# a) common to both files and
|
||||
# b) portable between both files
|
||||
#
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
LIBLZXPRESS_SRC = \
|
||||
lzxpress.c
|
||||
|
||||
LIBLZXPRESS_INCLUDES = \
|
||||
lzxpress.h
|
@ -19,13 +19,36 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
include Makefile.common
|
||||
include $(top_srcdir)/Makefile.am.inc
|
||||
|
||||
AM_CPPFLAGS = $(INCLUDEDIRS) $(WS_CPPFLAGS) $(GLIB_CFLAGS)
|
||||
|
||||
noinst_LTLIBRARIES = libairpdcap.la
|
||||
|
||||
include Custom.common
|
||||
|
||||
libairpdcap_la_SOURCES = \
|
||||
airpdcap.c \
|
||||
airpdcap_ccmp.c \
|
||||
airpdcap_debug.c \
|
||||
airpdcap_rijndael.c \
|
||||
airpdcap_tkip.c \
|
||||
airpdcap_debug.h \
|
||||
airpdcap_interop.h \
|
||||
airpdcap_int.h \
|
||||
airpdcap_rijndael.h \
|
||||
airpdcap_system.h \
|
||||
airpdcap_user.h \
|
||||
airpdcap_ws.h \
|
||||
kasumi.h \
|
||||
wep-wpadefs.h \
|
||||
$(CUSTOM_CRYPTO_SRC)
|
||||
|
||||
EXTRA_DIST = \
|
||||
Custom.common \
|
||||
CMakeLists.txt \
|
||||
CMakeListsCustom.txt.example
|
||||
|
||||
CLEANFILES = \
|
||||
libairpdcap.a \
|
||||
libairpdcap.la \
|
||||
@ -36,17 +59,7 @@ DISTCLEANFILES =
|
||||
MAINTAINERCLEANFILES = \
|
||||
Makefile.in
|
||||
|
||||
libairpdcap_la_SOURCES = \
|
||||
$(LIBAIRPDCAP_SRC) \
|
||||
$(LIBAIRPDCAP_INCLUDES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
Custom.common \
|
||||
Makefile.common \
|
||||
CMakeLists.txt \
|
||||
CMakeListsCustom.txt.example
|
||||
|
||||
checkapi:
|
||||
$(PERL) $(top_srcdir)/tools/checkAPIs.pl -g termoutput -build \
|
||||
-sourcedir=$(srcdir) \
|
||||
$(LIBAIRPDCAP_SRC)
|
||||
$(libairpdcap_la_SOURCES)
|
||||
|
@ -1,43 +0,0 @@
|
||||
# Makefile.common
|
||||
# Contains the stuff from Makefile.am and Makefile.nmake that is
|
||||
# a) common to both files and
|
||||
# b) portable between both files
|
||||
#
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
include Custom.common
|
||||
|
||||
LIBAIRPDCAP_SRC = \
|
||||
airpdcap.c \
|
||||
airpdcap_ccmp.c \
|
||||
airpdcap_debug.c \
|
||||
airpdcap_rijndael.c \
|
||||
airpdcap_tkip.c \
|
||||
$(CUSTOM_CRYPTO_SRC)
|
||||
|
||||
LIBAIRPDCAP_INCLUDES = \
|
||||
airpdcap_debug.h \
|
||||
airpdcap_interop.h \
|
||||
airpdcap_int.h \
|
||||
airpdcap_rijndael.h \
|
||||
airpdcap_system.h \
|
||||
airpdcap_user.h \
|
||||
airpdcap_ws.h \
|
||||
kasumi.h \
|
||||
wep-wpadefs.h
|
@ -19,7 +19,6 @@
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
#
|
||||
|
||||
include Makefile.common
|
||||
include $(top_srcdir)/Makefile.am.inc
|
||||
|
||||
AM_CPPFLAGS = $(INCLUDEDIRS) -I$(top_srcdir)/epan -I$(lemon_srcdir) \
|
||||
@ -27,6 +26,104 @@ AM_CPPFLAGS = $(INCLUDEDIRS) -I$(top_srcdir)/epan -I$(lemon_srcdir) \
|
||||
|
||||
noinst_LTLIBRARIES = libdfilter_generated.la libdfilter.la
|
||||
|
||||
# C source files that are part of the display filter source; this includes only
|
||||
# .c files, not YACC or Lex or... files (as Makefile.nmake maps this list
|
||||
# into a list of object files by replacing ".c" with ".obj") or files
|
||||
# generated from YACC or Lex files (as Automake doesn't want them in
|
||||
# _SOURCES variables).
|
||||
NONGENERATED_C_FILES = \
|
||||
dfilter.c \
|
||||
dfilter-macro.c \
|
||||
dfunctions.c \
|
||||
dfvm.c \
|
||||
drange.c \
|
||||
gencode.c \
|
||||
semcheck.c \
|
||||
sttype-function.c \
|
||||
sttype-integer.c \
|
||||
sttype-pointer.c \
|
||||
sttype-range.c \
|
||||
sttype-set.c \
|
||||
sttype-string.c \
|
||||
sttype-test.c \
|
||||
syntax-tree.c
|
||||
|
||||
# Header files that are not generated from other files
|
||||
NONGENERATED_HEADER_FILES = \
|
||||
dfilter.h \
|
||||
dfilter-macro.h \
|
||||
dfilter-int.h \
|
||||
dfunctions.h \
|
||||
dfvm.h \
|
||||
drange.h \
|
||||
gencode.h \
|
||||
semcheck.h \
|
||||
sttype-function.h \
|
||||
sttype-range.h \
|
||||
sttype-set.h \
|
||||
sttype-test.h \
|
||||
syntax-tree.h
|
||||
|
||||
# Files that generate compileable files
|
||||
GENERATOR_FILES = \
|
||||
grammar.lemon \
|
||||
scanner.l
|
||||
|
||||
# The C source files they generate and that we want in the distribution
|
||||
GENERATED_C_FILES = \
|
||||
scanner.c
|
||||
|
||||
# The C source files they generate and that we don't want in the distribution
|
||||
NODIST_GENERATED_C_FILES = \
|
||||
grammar.c
|
||||
|
||||
# The header files that they generate and that we want in the distribution
|
||||
GENERATED_HEADER_FILES = \
|
||||
scanner_lex.h
|
||||
|
||||
# The header files that they generate and that we don't want in the distribution
|
||||
NODIST_GENERATED_HEADER_FILES = \
|
||||
grammar.h
|
||||
|
||||
# All the generated files we want in the distribution.
|
||||
GENERATED_FILES = \
|
||||
$(GENERATED_C_FILES) \
|
||||
$(GENERATED_HEADER_FILES)
|
||||
|
||||
# All the generated files we don't want in the distribution.
|
||||
NODIST_GENERATED_FILES = \
|
||||
$(NODIST_GENERATED_C_FILES) \
|
||||
$(NODIST_GENERATED_HEADER_FILES)
|
||||
|
||||
#Since code generated by lex may trigger gcc warnings, we are now generating two
|
||||
#libraries. A single library is generated with the lex code without the barrier
|
||||
#"stop on warning". An other library is generated from the remaining source
|
||||
#files with the "stop on warning" barrier.
|
||||
libdfilter_la_SOURCES = \
|
||||
$(NONGENERATED_C_FILES) \
|
||||
$(NONGENERATED_HEADER_FILES)
|
||||
|
||||
libdfilter_la_LIBADD = \
|
||||
libdfilter_generated.la
|
||||
|
||||
libdfilter_la_DEPENDENCIES = \
|
||||
libdfilter_generated.la
|
||||
|
||||
libdfilter_generated_la_SOURCES = \
|
||||
$(GENERATED_C_FILES) \
|
||||
$(GENERATED_HEADER_FILES)
|
||||
|
||||
libdfilter_generated_la_CFLAGS = $(GENERATED_CFLAGS)
|
||||
|
||||
nodist_libdfilter_generated_la_SOURCES = \
|
||||
$(NODIST_GENERATED_C_FILES) \
|
||||
$(NODIST_GENERATED_HEADER_FILES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
.editorconfig \
|
||||
$(GENERATOR_FILES) \
|
||||
CMakeLists.txt
|
||||
|
||||
CLEANFILES = \
|
||||
libdfilter.a \
|
||||
libdfilter.la \
|
||||
@ -46,32 +143,6 @@ MAINTAINERCLEANFILES = \
|
||||
BUILT_SOURCES = \
|
||||
grammar.h
|
||||
|
||||
#Since code generated by lex may trigger gcc warnings, we are now generating two
|
||||
#libraries. A single library is generated with the lex code without the barrier
|
||||
#"stop on warning". An other library is generated from the remaining source
|
||||
#files with the "stop on warning" barrier.
|
||||
libdfilter_la_SOURCES = $(NONGENERATED_C_FILES) $(NONGENERATED_HEADER_FILES)
|
||||
|
||||
libdfilter_generated_la_SOURCES = \
|
||||
$(GENERATED_C_FILES) \
|
||||
$(GENERATED_HEADER_FILES)
|
||||
|
||||
libdfilter_generated_la_CFLAGS = $(GENERATED_CFLAGS)
|
||||
|
||||
nodist_libdfilter_generated_la_SOURCES = \
|
||||
$(NODIST_GENERATED_C_FILES) \
|
||||
$(NODIST_GENERATED_HEADER_FILES)
|
||||
|
||||
libdfilter_la_LIBADD = libdfilter_generated.la
|
||||
|
||||
libdfilter_la_DEPENDENCIES = libdfilter_generated.la
|
||||
|
||||
EXTRA_DIST = \
|
||||
.editorconfig \
|
||||
$(GENERATOR_FILES) \
|
||||
Makefile.common \
|
||||
CMakeLists.txt
|
||||
|
||||
scanner_lex.h : scanner.c
|
||||
|
||||
grammar.h : grammar.c
|
||||
|
@ -1,91 +0,0 @@
|
||||
# Makefile.common
|
||||
# Contains the stuff from Makefile.am and Makefile.nmake that is
|
||||
# a) common to both files and
|
||||
# b) portable between both files
|
||||
#
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
# C source files that are part of the display filter source; this includes only
|
||||
# .c files, not YACC or Lex or... files (as Makefile.nmake maps this list
|
||||
# into a list of object files by replacing ".c" with ".obj") or files
|
||||
# generated from YACC or Lex files (as Automake doesn't want them in
|
||||
# _SOURCES variables).
|
||||
NONGENERATED_C_FILES = \
|
||||
dfilter.c \
|
||||
dfilter-macro.c \
|
||||
dfunctions.c \
|
||||
dfvm.c \
|
||||
drange.c \
|
||||
gencode.c \
|
||||
semcheck.c \
|
||||
sttype-function.c \
|
||||
sttype-integer.c \
|
||||
sttype-pointer.c \
|
||||
sttype-range.c \
|
||||
sttype-set.c \
|
||||
sttype-string.c \
|
||||
sttype-test.c \
|
||||
syntax-tree.c
|
||||
|
||||
# Header files that are not generated from other files
|
||||
NONGENERATED_HEADER_FILES = \
|
||||
dfilter.h \
|
||||
dfilter-macro.h \
|
||||
dfilter-int.h \
|
||||
dfunctions.h \
|
||||
dfvm.h \
|
||||
drange.h \
|
||||
gencode.h \
|
||||
semcheck.h \
|
||||
sttype-function.h \
|
||||
sttype-range.h \
|
||||
sttype-set.h \
|
||||
sttype-test.h \
|
||||
syntax-tree.h
|
||||
|
||||
# Files that generate compileable files
|
||||
GENERATOR_FILES = \
|
||||
grammar.lemon \
|
||||
scanner.l
|
||||
|
||||
# The C source files they generate and that we want in the distribution
|
||||
GENERATED_C_FILES = \
|
||||
scanner.c
|
||||
|
||||
# The C source files they generate and that we don't want in the distribution
|
||||
NODIST_GENERATED_C_FILES = \
|
||||
grammar.c
|
||||
|
||||
# The header files that they generate and that we want in the distribution
|
||||
GENERATED_HEADER_FILES = \
|
||||
scanner_lex.h
|
||||
|
||||
# The header files that they generate and that we don't want in the distribution
|
||||
NODIST_GENERATED_HEADER_FILES = \
|
||||
grammar.h
|
||||
|
||||
# All the generated files we want in the distribution.
|
||||
GENERATED_FILES = \
|
||||
$(GENERATED_C_FILES) \
|
||||
$(GENERATED_HEADER_FILES)
|
||||
|
||||
# All the generated files we don't want in the distribution.
|
||||
NODIST_GENERATED_FILES = \
|
||||
$(NODIST_GENERATED_C_FILES) \
|
||||
$(NODIST_GENERATED_HEADER_FILES)
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -16,7 +16,29 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=HI2Operations
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
HI2Operations_ver11.asn \
|
||||
UmtsHI2Operations.asn \
|
||||
TS101909201.asn \
|
||||
PCESP.asn \
|
||||
EN301040.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF=
|
||||
|
@ -1,43 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=HI2Operations
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
HI2Operations_ver11.asn \
|
||||
UmtsHI2Operations.asn \
|
||||
TS101909201.asn \
|
||||
PCESP.asn \
|
||||
EN301040.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF=
|
@ -134,8 +134,7 @@ DIST_SUBDIRS = $(SUBDIRS) $(DONT_BUILD_SUBDIRS)
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.inc \
|
||||
Makefile.preinc
|
||||
Makefile.inc
|
||||
|
||||
MAINTAINERCLEANFILES = \
|
||||
Makefile.in
|
||||
|
@ -18,6 +18,11 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
MAKE_CNF_EXPORT = $(MAKE) generate_export
|
||||
|
||||
EXTRA_DIST_COMMON = \
|
||||
CMakeLists.txt
|
||||
|
||||
DISSECTOR = $(top_srcdir)/epan/dissectors/packet-$(PROTOCOL_NAME).c
|
||||
# This header file need not exist/get generated. It is only used when cleaning.
|
||||
DISSECTOR_HEADER=$(top_srcdir)/epan/dissectors/packet-$(PROTOCOL_NAME).h
|
||||
|
@ -1,24 +0,0 @@
|
||||
# To be included into the asn1 Makefiles
|
||||
#
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
MAKE_CNF_EXPORT = $(MAKE) generate_export
|
||||
|
||||
EXTRA_DIST_COMMON = \
|
||||
CMakeLists.txt
|
@ -16,7 +16,49 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=acp133
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn \
|
||||
MHSDirectoryObjectsAndAttributes.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../p1/p1-exp.cnf \
|
||||
$(builddir)/../x509af/x509af-exp.cnf \
|
||||
$(builddir)/../x509ce/x509ce-exp.cnf \
|
||||
$(builddir)/../x509if/x509if-exp.cnf \
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf
|
||||
|
||||
$(builddir)/../p1/p1-exp.cnf:
|
||||
(cd $(builddir)/../p1 && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509af/x509af-exp.cnf:
|
||||
(cd $(builddir)/../x509af && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509ce/x509ce-exp.cnf:
|
||||
(cd $(builddir)/../x509ce && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509if/x509if-exp.cnf:
|
||||
(cd $(builddir)/../x509if && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf:
|
||||
(cd $(builddir)/../x509sat && $(MAKE_CNF_EXPORT))
|
||||
|
@ -1,63 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=acp133
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn \
|
||||
MHSDirectoryObjectsAndAttributes.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../p1/p1-exp.cnf \
|
||||
$(builddir)/../x509af/x509af-exp.cnf \
|
||||
$(builddir)/../x509ce/x509ce-exp.cnf \
|
||||
$(builddir)/../x509if/x509if-exp.cnf \
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf
|
||||
|
||||
$(builddir)/../p1/p1-exp.cnf:
|
||||
(cd $(builddir)/../p1 && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509af/x509af-exp.cnf:
|
||||
(cd $(builddir)/../x509af && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509ce/x509ce-exp.cnf:
|
||||
(cd $(builddir)/../x509ce && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509if/x509if-exp.cnf:
|
||||
(cd $(builddir)/../x509if && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf:
|
||||
(cd $(builddir)/../x509sat && $(MAKE_CNF_EXPORT))
|
@ -16,7 +16,35 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=acse
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b -C
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../x509if/x509if-exp.cnf
|
||||
|
||||
$(builddir)/../x509if/x509if-exp.cnf:
|
||||
(cd $(builddir)/../x509if && $(MAKE_CNF_EXPORT))
|
||||
|
@ -1,49 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=acse
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b -C
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../x509if/x509if-exp.cnf
|
||||
|
||||
$(builddir)/../x509if/x509if-exp.cnf:
|
||||
(cd $(builddir)/../x509if && $(MAKE_CNF_EXPORT))
|
@ -16,7 +16,32 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=ansi_map
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../gsm_map/gsm_map-exp.cnf
|
||||
|
||||
$(builddir)/../gsm_map/gsm_map-exp.cnf:
|
||||
(cd $(builddir)/../gsm_map && $(MAKE_CNF_EXPORT))
|
||||
|
@ -1,46 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=ansi_map
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../gsm_map/gsm_map-exp.cnf
|
||||
|
||||
$(builddir)/../gsm_map/gsm_map-exp.cnf:
|
||||
(cd $(builddir)/../gsm_map && $(MAKE_CNF_EXPORT))
|
@ -16,7 +16,29 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=ansi_tcap
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
TCAP-Remote-Operations-Information-Objects.asn \
|
||||
TCAPPackage.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF=
|
||||
|
@ -1,43 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=ansi_tcap
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
TCAP-Remote-Operations-Information-Objects.asn \
|
||||
TCAPPackage.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF=
|
@ -16,7 +16,25 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME = atn-cm
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = $(PROTOCOL_NAME).asn
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
# ASN1 PER unaligned encoding
|
||||
A2W_FLAGS= -u -L
|
||||
|
||||
EXTRA_CNF=
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME = atn-cm
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = $(PROTOCOL_NAME).asn
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
# ASN1 PER unaligned encoding
|
||||
A2W_FLAGS= -u -L
|
||||
|
||||
EXTRA_CNF=
|
@ -16,7 +16,25 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME = atn-cpdlc
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = $(PROTOCOL_NAME).asn
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
# ASN1 PER unaligned encoding
|
||||
A2W_FLAGS= -u -L
|
||||
|
||||
EXTRA_CNF=
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME = atn-cpdlc
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = $(PROTOCOL_NAME).asn
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
# ASN1 PER unaligned encoding
|
||||
A2W_FLAGS= -u -L
|
||||
|
||||
EXTRA_CNF=
|
@ -16,7 +16,26 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME = atn-ulcs
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = $(PROTOCOL_NAME).asn
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
# default behavoiur ASN1 PER encoding
|
||||
A2W_FLAGS= -u -L
|
||||
|
||||
EXTRA_CNF=
|
||||
|
@ -1,40 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME = atn-ulcs
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = $(PROTOCOL_NAME).asn
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
# default behavoiur ASN1 PER encoding
|
||||
A2W_FLAGS= -u -L
|
||||
|
||||
EXTRA_CNF=
|
@ -16,7 +16,28 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME = c1222
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF=
|
||||
|
@ -1,42 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME = c1222
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF=
|
@ -16,7 +16,54 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=camel
|
||||
|
||||
EXT_ASN_FILE_LIST_LATE = \
|
||||
../ros/Remote-Operations-Information-Objects.asn \
|
||||
../ros/Remote-Operations-Generic-ROS-PDUs.asn
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
CAP-object-identifiers.asn \
|
||||
CAP-classes.asn \
|
||||
CAP-datatypes.asn \
|
||||
CAP-errorcodes.asn \
|
||||
CAP-errortypes.asn \
|
||||
CAP-operationcodes.asn \
|
||||
CAP-GPRS-ReferenceNumber.asn \
|
||||
CAP-gsmSCF-gsmSRF-ops-args.asn \
|
||||
CAP-gsmSSF-gsmSCF-ops-args.asn \
|
||||
CAP-gprsSSF-gsmSCF-ops-args.asn \
|
||||
CAP-SMS-ops-args.asn \
|
||||
CAP-U-ABORT-Data.asn \
|
||||
CamelV2diff.asn
|
||||
|
||||
INCLUDED_ASN_FILE_LIST = \
|
||||
TCAPMessages.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
$(INCLUDED_ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).asn \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b -L
|
||||
|
||||
EXTRA_CNF=$(builddir)/../inap/inap-exp.cnf \
|
||||
$(builddir)/../gsm_map/gsm_map-exp.cnf
|
||||
|
||||
$(builddir)/../gsm_map/gsm_map-exp.cnf:
|
||||
(cd $(builddir)/../gsm_map && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../inap/inap-exp.cnf:
|
||||
(cd $(builddir)/../inap && $(MAKE_CNF_EXPORT))
|
||||
|
@ -1,68 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=camel
|
||||
|
||||
EXT_ASN_FILE_LIST_LATE = \
|
||||
../ros/Remote-Operations-Information-Objects.asn \
|
||||
../ros/Remote-Operations-Generic-ROS-PDUs.asn
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
CAP-object-identifiers.asn \
|
||||
CAP-classes.asn \
|
||||
CAP-datatypes.asn \
|
||||
CAP-errorcodes.asn \
|
||||
CAP-errortypes.asn \
|
||||
CAP-operationcodes.asn \
|
||||
CAP-GPRS-ReferenceNumber.asn \
|
||||
CAP-gsmSCF-gsmSRF-ops-args.asn \
|
||||
CAP-gsmSSF-gsmSCF-ops-args.asn \
|
||||
CAP-gprsSSF-gsmSCF-ops-args.asn \
|
||||
CAP-SMS-ops-args.asn \
|
||||
CAP-U-ABORT-Data.asn \
|
||||
CamelV2diff.asn
|
||||
|
||||
INCLUDED_ASN_FILE_LIST = \
|
||||
TCAPMessages.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
$(INCLUDED_ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).asn \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b -L
|
||||
|
||||
EXTRA_CNF=$(builddir)/../inap/inap-exp.cnf \
|
||||
$(builddir)/../gsm_map/gsm_map-exp.cnf
|
||||
|
||||
$(builddir)/../gsm_map/gsm_map-exp.cnf:
|
||||
(cd $(builddir)/../gsm_map && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../inap/inap-exp.cnf:
|
||||
(cd $(builddir)/../inap && $(MAKE_CNF_EXPORT))
|
@ -16,7 +16,28 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=cdt
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF=
|
||||
|
@ -1,42 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=cdt
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF=
|
@ -16,7 +16,26 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=charging_ase
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
Tariffing-Data-Types.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF =
|
||||
|
@ -1,40 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=charging_ase
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
Tariffing-Data-Types.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF =
|
@ -16,7 +16,44 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=cmip
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST_LATE = \
|
||||
../x721/Attribute-ASN1Module.asn \
|
||||
../ros/Remote-Operations-Information-Objects.asn \
|
||||
../ros/Remote-Operations-Generic-ROS-PDUs.asn
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
CMIP-1.asn \
|
||||
CMIP-A-ABORT-Information.asn \
|
||||
CMIP-A-ASSOCIATE-Information.asn
|
||||
|
||||
INCLUDED_ASN_FILE_LIST = \
|
||||
CMIP.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
$(INCLUDED_ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../acse/acse-exp.cnf
|
||||
|
||||
$(builddir)/../acse/acse-exp.cnf:
|
||||
(cd $(builddir)/../acse && $(MAKE_CNF_EXPORT))
|
||||
|
@ -1,58 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=cmip
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST_LATE = \
|
||||
../x721/Attribute-ASN1Module.asn \
|
||||
../ros/Remote-Operations-Information-Objects.asn \
|
||||
../ros/Remote-Operations-Generic-ROS-PDUs.asn
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
CMIP-1.asn \
|
||||
CMIP-A-ABORT-Information.asn \
|
||||
CMIP-A-ASSOCIATE-Information.asn
|
||||
|
||||
INCLUDED_ASN_FILE_LIST = \
|
||||
CMIP.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
$(INCLUDED_ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../acse/acse-exp.cnf
|
||||
|
||||
$(builddir)/../acse/acse-exp.cnf:
|
||||
(cd $(builddir)/../acse && $(MAKE_CNF_EXPORT))
|
@ -16,7 +16,34 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=cmp
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
CMP.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../pkix1explicit/pkix1explicit_exp.cnf \
|
||||
$(builddir)/../pkix1implicit/pkix1implicit_exp.cnf \
|
||||
$(builddir)/../crmf/crmf-exp.cnf
|
||||
|
||||
$(builddir)/../crmf/crmf-exp.cnf:
|
||||
(cd $(builddir)/../crmf && $(MAKE_CNF_EXPORT))
|
||||
|
@ -1,48 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=cmp
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
CMP.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../pkix1explicit/pkix1explicit_exp.cnf \
|
||||
$(builddir)/../pkix1implicit/pkix1implicit_exp.cnf \
|
||||
$(builddir)/../crmf/crmf-exp.cnf
|
||||
|
||||
$(builddir)/../crmf/crmf-exp.cnf:
|
||||
(cd $(builddir)/../crmf && $(MAKE_CNF_EXPORT))
|
@ -16,7 +16,51 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=cms
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
CryptographicMessageSyntax.asn \
|
||||
AttributeCertificateVersion1.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS = -b -C
|
||||
|
||||
EXTRA_CNF = \
|
||||
$(builddir)/../x509af/x509af-exp.cnf \
|
||||
$(builddir)/../x509ce/x509ce-exp.cnf \
|
||||
$(builddir)/../x509if/x509if-exp.cnf \
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf
|
||||
|
||||
EXPORT_DEPENDS = \
|
||||
$(builddir)/../x509af/x509af-exp.cnf
|
||||
|
||||
$(builddir)/../x509af/x509af-exp.cnf:
|
||||
(cd $(builddir)/../x509af && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509ce/x509ce-exp.cnf:
|
||||
(cd $(builddir)/../x509ce && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509if/x509if-exp.cnf:
|
||||
(cd $(builddir)/../x509if && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf:
|
||||
(cd $(builddir)/../x509sat && $(MAKE_CNF_EXPORT))
|
||||
|
@ -1,65 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=cms
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
CryptographicMessageSyntax.asn \
|
||||
AttributeCertificateVersion1.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS = -b -C
|
||||
|
||||
EXTRA_CNF = \
|
||||
$(builddir)/../x509af/x509af-exp.cnf \
|
||||
$(builddir)/../x509ce/x509ce-exp.cnf \
|
||||
$(builddir)/../x509if/x509if-exp.cnf \
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf
|
||||
|
||||
EXPORT_DEPENDS = \
|
||||
$(builddir)/../x509af/x509af-exp.cnf
|
||||
|
||||
$(builddir)/../x509af/x509af-exp.cnf:
|
||||
(cd $(builddir)/../x509af && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509ce/x509ce-exp.cnf:
|
||||
(cd $(builddir)/../x509ce && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509if/x509if-exp.cnf:
|
||||
(cd $(builddir)/../x509if && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf:
|
||||
(cd $(builddir)/../x509sat && $(MAKE_CNF_EXPORT))
|
@ -16,7 +16,30 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=credssp
|
||||
|
||||
EXPORT_FILES = $(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
CredSSP.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b -C
|
||||
|
||||
EXTRA_CNF=
|
||||
|
@ -1,44 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=credssp
|
||||
|
||||
EXPORT_FILES = $(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
CredSSP.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b -C
|
||||
|
||||
EXTRA_CNF=
|
@ -16,7 +16,34 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=crmf
|
||||
|
||||
EXPORT_FILES = $(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
CRMF.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../cms/cms-exp.cnf
|
||||
|
||||
$(builddir)/../cms/cms-exp.cnf:
|
||||
(cd $(builddir)/../cms && $(MAKE_CNF_EXPORT))
|
||||
|
@ -1,48 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=crmf
|
||||
|
||||
EXPORT_FILES = $(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
CRMF.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../cms/cms-exp.cnf
|
||||
|
||||
$(builddir)/../cms/cms-exp.cnf:
|
||||
(cd $(builddir)/../cms && $(MAKE_CNF_EXPORT))
|
@ -16,7 +16,68 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=dap
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn \
|
||||
DirectoryAccessProtocol.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b -L
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../acse/acse-exp.cnf \
|
||||
$(builddir)/../dop/dop-exp.cnf \
|
||||
$(builddir)/../disp/disp-exp.cnf \
|
||||
$(builddir)/../dsp/dsp-exp.cnf \
|
||||
$(builddir)/../crmf/crmf-exp.cnf \
|
||||
$(builddir)/../ros/ros-exp.cnf \
|
||||
$(builddir)/../x509af/x509af-exp.cnf \
|
||||
$(builddir)/../x509if/x509if-exp.cnf \
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf
|
||||
|
||||
$(builddir)/../acse/acse-exp.cnf:
|
||||
(cd $(builddir)/../acse && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../dop/dop-exp.cnf:
|
||||
(cd $(builddir)/../dop && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../disp/disp-exp.cnf:
|
||||
(cd $(builddir)/../disp && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../dsp/dsp-exp.cnf:
|
||||
(cd $(builddir)/../dsp && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../crmf/crmf-exp.cnf:
|
||||
(cd $(builddir)/../crmf && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../ros/ros-exp.cnf:
|
||||
(cd $(builddir)/../ros && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509af/x509af-exp.cnf:
|
||||
(cd $(builddir)/../x509af && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509if/x509if-exp.cnf:
|
||||
(cd $(builddir)/../x509if && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf:
|
||||
(cd $(builddir)/../x509sat && $(MAKE_CNF_EXPORT))
|
||||
|
@ -1,82 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=dap
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn \
|
||||
DirectoryAccessProtocol.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b -L
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../acse/acse-exp.cnf \
|
||||
$(builddir)/../dop/dop-exp.cnf \
|
||||
$(builddir)/../disp/disp-exp.cnf \
|
||||
$(builddir)/../dsp/dsp-exp.cnf \
|
||||
$(builddir)/../crmf/crmf-exp.cnf \
|
||||
$(builddir)/../ros/ros-exp.cnf \
|
||||
$(builddir)/../x509af/x509af-exp.cnf \
|
||||
$(builddir)/../x509if/x509if-exp.cnf \
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf
|
||||
|
||||
$(builddir)/../acse/acse-exp.cnf:
|
||||
(cd $(builddir)/../acse && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../dop/dop-exp.cnf:
|
||||
(cd $(builddir)/../dop && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../disp/disp-exp.cnf:
|
||||
(cd $(builddir)/../disp && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../dsp/dsp-exp.cnf:
|
||||
(cd $(builddir)/../dsp && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../crmf/crmf-exp.cnf:
|
||||
(cd $(builddir)/../crmf && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../ros/ros-exp.cnf:
|
||||
(cd $(builddir)/../ros && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509af/x509af-exp.cnf:
|
||||
(cd $(builddir)/../x509af && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509if/x509if-exp.cnf:
|
||||
(cd $(builddir)/../x509if && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf:
|
||||
(cd $(builddir)/../x509sat && $(MAKE_CNF_EXPORT))
|
@ -16,7 +16,54 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=disp
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXPORT_DEPENDS = \
|
||||
$(builddir)/../dop/dop-exp.cnf
|
||||
|
||||
EXTRA_CNF = \
|
||||
$(builddir)/../dap/dap-exp.cnf \
|
||||
$(builddir)/../dop/dop-exp.cnf \
|
||||
$(builddir)/../dsp/dsp-exp.cnf \
|
||||
$(builddir)/../x509af/x509af-exp.cnf \
|
||||
$(builddir)/../x509if/x509if-exp.cnf
|
||||
|
||||
$(builddir)/../dap/dap-exp.cnf:
|
||||
(cd $(builddir)/../dap && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../dop/dop-exp.cnf:
|
||||
(cd $(builddir)/../dop && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../dsp/dsp-exp.cnf:
|
||||
(cd $(builddir)/../dsp && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509af/x509af-exp.cnf:
|
||||
(cd $(builddir)/../x509af && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509if/x509if-exp.cnf:
|
||||
(cd $(builddir)/../x509if && $(MAKE_CNF_EXPORT))
|
||||
|
@ -1,68 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=disp
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXPORT_DEPENDS = \
|
||||
$(builddir)/../dop/dop-exp.cnf
|
||||
|
||||
EXTRA_CNF = \
|
||||
$(builddir)/../dap/dap-exp.cnf \
|
||||
$(builddir)/../dop/dop-exp.cnf \
|
||||
$(builddir)/../dsp/dsp-exp.cnf \
|
||||
$(builddir)/../x509af/x509af-exp.cnf \
|
||||
$(builddir)/../x509if/x509if-exp.cnf
|
||||
|
||||
$(builddir)/../dap/dap-exp.cnf:
|
||||
(cd $(builddir)/../dap && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../dop/dop-exp.cnf:
|
||||
(cd $(builddir)/../dop && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../dsp/dsp-exp.cnf:
|
||||
(cd $(builddir)/../dsp && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509af/x509af-exp.cnf:
|
||||
(cd $(builddir)/../x509af && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509if/x509if-exp.cnf:
|
||||
(cd $(builddir)/../x509if && $(MAKE_CNF_EXPORT))
|
@ -16,7 +16,55 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=dop
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../dap/dap-exp.cnf \
|
||||
$(builddir)/../dsp/dsp-exp.cnf \
|
||||
$(builddir)/../crmf/crmf-exp.cnf \
|
||||
$(builddir)/../x509af/x509af-exp.cnf \
|
||||
$(builddir)/../x509if/x509if-exp.cnf \
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf
|
||||
|
||||
$(builddir)/../dap/dap-exp.cnf:
|
||||
(cd $(builddir)/../dap && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../dsp/dsp-exp.cnf:
|
||||
(cd $(builddir)/../dsp && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../crmf/crmf-exp.cnf:
|
||||
(cd $(builddir)/../crmf && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509af/x509af-exp.cnf:
|
||||
(cd $(builddir)/../x509af && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509if/x509if-exp.cnf:
|
||||
(cd $(builddir)/../x509if && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf:
|
||||
(cd $(builddir)/../x509sat && $(MAKE_CNF_EXPORT))
|
||||
|
@ -1,69 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=dop
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../dap/dap-exp.cnf \
|
||||
$(builddir)/../dsp/dsp-exp.cnf \
|
||||
$(builddir)/../crmf/crmf-exp.cnf \
|
||||
$(builddir)/../x509af/x509af-exp.cnf \
|
||||
$(builddir)/../x509if/x509if-exp.cnf \
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf
|
||||
|
||||
$(builddir)/../dap/dap-exp.cnf:
|
||||
(cd $(builddir)/../dap && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../dsp/dsp-exp.cnf:
|
||||
(cd $(builddir)/../dsp && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../crmf/crmf-exp.cnf:
|
||||
(cd $(builddir)/../crmf && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509af/x509af-exp.cnf:
|
||||
(cd $(builddir)/../x509af && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509if/x509if-exp.cnf:
|
||||
(cd $(builddir)/../x509if && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf:
|
||||
(cd $(builddir)/../x509sat && $(MAKE_CNF_EXPORT))
|
@ -16,7 +16,47 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=dsp
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF = \
|
||||
$(builddir)/../dap/dap-exp.cnf \
|
||||
$(builddir)/../x509af/x509af-exp.cnf \
|
||||
$(builddir)/../x509if/x509if-exp.cnf \
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf
|
||||
|
||||
$(builddir)/../dap/dap-exp.cnf:
|
||||
(cd $(builddir)/../dap && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509af/x509af-exp.cnf:
|
||||
(cd $(builddir)/../x509af && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509if/x509if-exp.cnf:
|
||||
(cd $(builddir)/../x509if && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf:
|
||||
(cd $(builddir)/../x509sat && $(MAKE_CNF_EXPORT))
|
||||
|
@ -1,61 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=dsp
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF = \
|
||||
$(builddir)/../dap/dap-exp.cnf \
|
||||
$(builddir)/../x509af/x509af-exp.cnf \
|
||||
$(builddir)/../x509if/x509if-exp.cnf \
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf
|
||||
|
||||
$(builddir)/../dap/dap-exp.cnf:
|
||||
(cd $(builddir)/../dap && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509af/x509af-exp.cnf:
|
||||
(cd $(builddir)/../x509af && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509if/x509if-exp.cnf:
|
||||
(cd $(builddir)/../x509if && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509sat/x509sat-exp.cnf:
|
||||
(cd $(builddir)/../x509sat && $(MAKE_CNF_EXPORT))
|
@ -16,7 +16,40 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=ess
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
ExtendedSecurityServices.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b -k -C
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../cms/cms-exp.cnf \
|
||||
$(builddir)/../x509af/x509af-exp.cnf \
|
||||
$(builddir)/../x509ce/x509ce-exp.cnf
|
||||
|
||||
$(builddir)/../cms/cms-exp.cnf:
|
||||
(cd $(builddir)/../cms && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509af/x509af-exp.cnf:
|
||||
(cd $(builddir)/../x509af && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509ce/x509ce-exp.cnf:
|
||||
(cd $(builddir)/../x509ce && $(MAKE_CNF_EXPORT))
|
||||
|
@ -1,54 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=ess
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
ExtendedSecurityServices.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b -k -C
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../cms/cms-exp.cnf \
|
||||
$(builddir)/../x509af/x509af-exp.cnf \
|
||||
$(builddir)/../x509ce/x509ce-exp.cnf
|
||||
|
||||
$(builddir)/../cms/cms-exp.cnf:
|
||||
(cd $(builddir)/../cms && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509af/x509af-exp.cnf:
|
||||
(cd $(builddir)/../x509af && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../x509ce/x509ce-exp.cnf:
|
||||
(cd $(builddir)/../x509ce && $(MAKE_CNF_EXPORT))
|
@ -16,7 +16,35 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=ftam
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
ISO8571-FTAM.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../acse/acse-exp.cnf
|
||||
|
||||
$(builddir)/../acse/acse-exp.cnf:
|
||||
(cd $(builddir)/../acse && $(MAKE_CNF_EXPORT))
|
||||
|
@ -1,49 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=ftam
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
ISO8571-FTAM.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF= \
|
||||
$(builddir)/../acse/acse-exp.cnf
|
||||
|
||||
$(builddir)/../acse/acse-exp.cnf:
|
||||
(cd $(builddir)/../acse && $(MAKE_CNF_EXPORT))
|
@ -16,7 +16,27 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=goose
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF=
|
||||
|
@ -1,41 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=goose
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
$(PROTOCOL_NAME).asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF=
|
@ -16,7 +16,46 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=gprscdr
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
GenericChargingDataTypesV1250.asn \
|
||||
GPRSChargingDataTypesV641.asn \
|
||||
GPRSChargingDataTypesV1260.asn
|
||||
|
||||
INCLUDED_ASN_FILE_LIST = \
|
||||
3GPPGenericChargingDataTypes.asn \
|
||||
GPRSChargingDataTypes.asn \
|
||||
GPRSChargingDataTypesV8e0.asn \
|
||||
GPRSChargingDataTypesV9f0.asn \
|
||||
GPRSChargingDataTypesV1171.asn \
|
||||
GenericChargingDataTypes.asn \
|
||||
GenericChargingDataTypesV641.asn \
|
||||
GenericChargingDataTypesV8e0.asn \
|
||||
GenericChargingDataTypesV9f0.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
$(INCLUDED_ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF=$(builddir)/../gsm_map/gsm_map-exp.cnf
|
||||
|
||||
$(builddir)/../gsm_map/gsm_map-exp.cnf:
|
||||
(cd $(builddir)/../gsm_map && $(MAKE_CNF_EXPORT))
|
||||
|
@ -1,60 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=gprscdr
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
GenericChargingDataTypesV1250.asn \
|
||||
GPRSChargingDataTypesV641.asn \
|
||||
GPRSChargingDataTypesV1260.asn
|
||||
|
||||
INCLUDED_ASN_FILE_LIST = \
|
||||
3GPPGenericChargingDataTypes.asn \
|
||||
GPRSChargingDataTypes.asn \
|
||||
GPRSChargingDataTypesV8e0.asn \
|
||||
GPRSChargingDataTypesV9f0.asn \
|
||||
GPRSChargingDataTypesV1171.asn \
|
||||
GenericChargingDataTypes.asn \
|
||||
GenericChargingDataTypesV641.asn \
|
||||
GenericChargingDataTypesV8e0.asn \
|
||||
GenericChargingDataTypesV9f0.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
$(INCLUDED_ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF=$(builddir)/../gsm_map/gsm_map-exp.cnf
|
||||
|
||||
$(builddir)/../gsm_map/gsm_map-exp.cnf:
|
||||
(cd $(builddir)/../gsm_map && $(MAKE_CNF_EXPORT))
|
@ -16,7 +16,80 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=gsm_map
|
||||
|
||||
PROTO_OPT =
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST = \
|
||||
../ros/Remote-Operations-Information-Objects.asn
|
||||
|
||||
DATATYPES_ASN_FILES = \
|
||||
MAP-ExtensionDataTypes.asn \
|
||||
MAP-CommonDataTypes.asn \
|
||||
MAP-SS-DataTypes.asn \
|
||||
MAP-ER-DataTypes.asn \
|
||||
MAP-SM-DataTypes.asn \
|
||||
MAP-OM-DataTypes.asn \
|
||||
MAP-MS-DataTypes.asn \
|
||||
MAP-CH-DataTypes.asn \
|
||||
MAP-LCS-DataTypes.asn \
|
||||
MAP-GR-DataTypes.asn
|
||||
|
||||
OPERATIONS_ASN_FILES = \
|
||||
MAP-LocationServiceOperations.asn \
|
||||
MAP-Group-Call-Operations.asn \
|
||||
MAP-ShortMessageServiceOperations.asn \
|
||||
MAP-SupplementaryServiceOperations.asn \
|
||||
MAP-CallHandlingOperations.asn \
|
||||
MAP-OperationAndMaintenanceOperations.asn \
|
||||
MAP-MobileServiceOperations.asn
|
||||
|
||||
SS_ASN_FILES = \
|
||||
SS-DataTypes.asn \
|
||||
SS-Operations.asn
|
||||
|
||||
PROPRIETARY_ASN_FILES = \
|
||||
Ericsson.asn \
|
||||
Nokia.asn
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
MobileDomainDefinitions.asn \
|
||||
MAP-ApplicationContexts.asn \
|
||||
MAP-SS-Code.asn \
|
||||
MAP-BS-Code.asn \
|
||||
MAP-TS-Code.asn \
|
||||
$(DATATYPES_ASN_FILES) \
|
||||
MAP-DialogueInformation.asn \
|
||||
$(OPERATIONS_ASN_FILES) \
|
||||
MAP-Errors.asn \
|
||||
MAP-Protocol.asn \
|
||||
GSMMAP.asn \
|
||||
$(SS_ASN_FILES) \
|
||||
$(PROPRIETARY_ASN_FILES)
|
||||
|
||||
INCLUDED_ASN_FILE_LIST = \
|
||||
SS-Errors.asn \
|
||||
SS-Protocol.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
$(INCLUDED_ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF=
|
||||
|
@ -1,94 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=gsm_map
|
||||
|
||||
PROTO_OPT =
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST = \
|
||||
../ros/Remote-Operations-Information-Objects.asn
|
||||
|
||||
DATATYPES_ASN_FILES = \
|
||||
MAP-ExtensionDataTypes.asn \
|
||||
MAP-CommonDataTypes.asn \
|
||||
MAP-SS-DataTypes.asn \
|
||||
MAP-ER-DataTypes.asn \
|
||||
MAP-SM-DataTypes.asn \
|
||||
MAP-OM-DataTypes.asn \
|
||||
MAP-MS-DataTypes.asn \
|
||||
MAP-CH-DataTypes.asn \
|
||||
MAP-LCS-DataTypes.asn \
|
||||
MAP-GR-DataTypes.asn
|
||||
|
||||
OPERATIONS_ASN_FILES = \
|
||||
MAP-LocationServiceOperations.asn \
|
||||
MAP-Group-Call-Operations.asn \
|
||||
MAP-ShortMessageServiceOperations.asn \
|
||||
MAP-SupplementaryServiceOperations.asn \
|
||||
MAP-CallHandlingOperations.asn \
|
||||
MAP-OperationAndMaintenanceOperations.asn \
|
||||
MAP-MobileServiceOperations.asn
|
||||
|
||||
SS_ASN_FILES = \
|
||||
SS-DataTypes.asn \
|
||||
SS-Operations.asn
|
||||
|
||||
PROPRIETARY_ASN_FILES = \
|
||||
Ericsson.asn \
|
||||
Nokia.asn
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
MobileDomainDefinitions.asn \
|
||||
MAP-ApplicationContexts.asn \
|
||||
MAP-SS-Code.asn \
|
||||
MAP-BS-Code.asn \
|
||||
MAP-TS-Code.asn \
|
||||
$(DATATYPES_ASN_FILES) \
|
||||
MAP-DialogueInformation.asn \
|
||||
$(OPERATIONS_ASN_FILES) \
|
||||
MAP-Errors.asn \
|
||||
MAP-Protocol.asn \
|
||||
GSMMAP.asn \
|
||||
$(SS_ASN_FILES) \
|
||||
$(PROPRIETARY_ASN_FILES)
|
||||
|
||||
INCLUDED_ASN_FILE_LIST = \
|
||||
SS-Errors.asn \
|
||||
SS-Protocol.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
$(INCLUDED_ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF=
|
@ -16,7 +16,39 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME = h225
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
H323-MESSAGES.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS=
|
||||
|
||||
EXTRA_CNF = \
|
||||
$(builddir)/../h235/h235-exp.cnf \
|
||||
$(builddir)/../h245/h245-exp.cnf
|
||||
|
||||
$(builddir)/../h235/h235-exp.cnf:
|
||||
(cd $(builddir)/../h235 && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../h245/h245-exp.cnf:
|
||||
(cd $(builddir)/../h245 && $(MAKE_CNF_EXPORT))
|
||||
|
@ -1,53 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME = h225
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
H323-MESSAGES.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS=
|
||||
|
||||
EXTRA_CNF = \
|
||||
$(builddir)/../h235/h235-exp.cnf \
|
||||
$(builddir)/../h245/h245-exp.cnf
|
||||
|
||||
$(builddir)/../h235/h235-exp.cnf:
|
||||
(cd $(builddir)/../h235 && $(MAKE_CNF_EXPORT))
|
||||
|
||||
$(builddir)/../h245/h245-exp.cnf:
|
||||
(cd $(builddir)/../h245 && $(MAKE_CNF_EXPORT))
|
@ -16,7 +16,35 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME = h235
|
||||
|
||||
EXPORT_FILES = $(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
H235-SECURITY-MESSAGES.asn \
|
||||
H235-SRTP.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS =
|
||||
|
||||
EXTRA_CNF = \
|
||||
$(builddir)/../h225/h225-exp.cnf
|
||||
|
||||
$(builddir)/../h225/h225-exp.cnf:
|
||||
(cd $(builddir)/../h225 && $(MAKE_CNF_EXPORT))
|
||||
|
@ -1,49 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME = h235
|
||||
|
||||
EXPORT_FILES = $(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
H235-SECURITY-MESSAGES.asn \
|
||||
H235-SRTP.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS =
|
||||
|
||||
EXTRA_CNF = \
|
||||
$(builddir)/../h225/h225-exp.cnf
|
||||
|
||||
$(builddir)/../h225/h225-exp.cnf:
|
||||
(cd $(builddir)/../h225 && $(MAKE_CNF_EXPORT))
|
@ -16,7 +16,29 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME = h245
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
MULTIMEDIA-SYSTEM-CONTROL.asn
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS =
|
||||
|
||||
EXTRA_CNF =
|
||||
|
@ -1,43 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME = h245
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
MULTIMEDIA-SYSTEM-CONTROL.asn
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS =
|
||||
|
||||
EXTRA_CNF =
|
@ -16,7 +16,33 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME=h248
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
h248v3.asn \
|
||||
h248v1support.asn
|
||||
|
||||
INCLUDED_ASN_FILE_LIST = \
|
||||
MEGACO.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
$(INCLUDED_ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF=
|
||||
|
@ -1,47 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME=h248
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
h248v3.asn \
|
||||
h248v1support.asn
|
||||
|
||||
INCLUDED_ASN_FILE_LIST = \
|
||||
MEGACO.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
$(INCLUDED_ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS= -b
|
||||
|
||||
EXTRA_CNF=
|
@ -16,7 +16,25 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME = h282
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
RDC-PROTOCOL.asn
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS =
|
||||
|
||||
EXTRA_CNF =
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME = h282
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
RDC-PROTOCOL.asn
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS =
|
||||
|
||||
EXTRA_CNF =
|
@ -16,7 +16,25 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME = h283
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
LCT-PROTOCOL.asn
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS =
|
||||
|
||||
EXTRA_CNF =
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME = h283
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
LCT-PROTOCOL.asn
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS =
|
||||
|
||||
EXTRA_CNF =
|
@ -16,7 +16,31 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME = h323
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
RAS-PROTOCOL-TUNNEL.asn \
|
||||
ROBUSTNESS-DATA.asn
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS =
|
||||
|
||||
EXTRA_CNF = \
|
||||
$(builddir)/../h225/h225-exp.cnf
|
||||
|
||||
$(builddir)/../h225/h225-exp.cnf:
|
||||
(cd $(builddir)/../h225 && $(MAKE_CNF_EXPORT))
|
||||
|
@ -1,45 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME = h323
|
||||
|
||||
EXT_ASN_FILE_LIST =
|
||||
|
||||
ASN_FILE_LIST = \
|
||||
RAS-PROTOCOL-TUNNEL.asn \
|
||||
ROBUSTNESS-DATA.asn
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS =
|
||||
|
||||
EXTRA_CNF = \
|
||||
$(builddir)/../h225/h225-exp.cnf
|
||||
|
||||
$(builddir)/../h225/h225-exp.cnf:
|
||||
(cd $(builddir)/../h225 && $(MAKE_CNF_EXPORT))
|
@ -16,7 +16,37 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
include ../Makefile.preinc
|
||||
include Makefile.common
|
||||
include ../Makefile.inc
|
||||
|
||||
PROTOCOL_NAME = h450-ros
|
||||
|
||||
# The file needs to use h450 for the filter elements etc
|
||||
PROTO_OPT = -p h450.ros
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST = ../ros/Remote-Operations-Information-Objects.asn
|
||||
|
||||
ASN_FILE_LIST = Remote-Operations-Apdus.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS=
|
||||
|
||||
EXTRA_CNF = \
|
||||
$(builddir)/../ros/ros-inv.cnf \
|
||||
$(builddir)/../ros/ros-res.cnf \
|
||||
$(builddir)/../ros/ros-err.cnf \
|
||||
$(builddir)/../ros/ros-rej.cnf
|
||||
|
@ -1,51 +0,0 @@
|
||||
# Wireshark - Network traffic analyzer
|
||||
# By Gerald Combs <gerald@wireshark.org>
|
||||
# Copyright 1998 Gerald Combs
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
PROTOCOL_NAME = h450-ros
|
||||
|
||||
# The file needs to use h450 for the filter elements etc
|
||||
PROTO_OPT = -p h450.ros
|
||||
|
||||
EXPORT_FILES = \
|
||||
$(PROTOCOL_NAME)-exp.cnf
|
||||
|
||||
EXT_ASN_FILE_LIST = ../ros/Remote-Operations-Information-Objects.asn
|
||||
|
||||
ASN_FILE_LIST = Remote-Operations-Apdus.asn
|
||||
|
||||
# The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
|
||||
# files do not exist for all protocols: Please add/remove as required.
|
||||
EXTRA_DIST = \
|
||||
$(EXTRA_DIST_COMMON) \
|
||||
$(ASN_FILE_LIST) \
|
||||
packet-$(PROTOCOL_NAME)-template.c \
|
||||
packet-$(PROTOCOL_NAME)-template.h \
|
||||
$(PROTOCOL_NAME).cnf
|
||||
|
||||
SRC_FILES = \
|
||||
$(EXTRA_DIST) \
|
||||
$(EXT_ASN_FILE_LIST)
|
||||
|
||||
A2W_FLAGS=
|
||||
|
||||
EXTRA_CNF = \
|
||||
$(builddir)/../ros/ros-inv.cnf \
|
||||
$(builddir)/../ros/ros-res.cnf \
|
||||
$(builddir)/../ros/ros-err.cnf \
|
||||
$(builddir)/../ros/ros-rej.cnf
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user