aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.common
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2016-06-21 05:06:23 +0100
committerJoão Valverde <j@v6e.pt>2016-06-30 11:04:17 +0000
commita16d401b25c85ffb7fde6c46b51cb7048112f885 (patch)
tree71ba692edcdb6f2a10ed566e18bcfbbc456cfad1 /Makefile.common
parentf6c5cf953212248cbc680ef0d9b2f852cbfdb951 (diff)
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>
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common184
1 files changed, 0 insertions, 184 deletions
diff --git a/Makefile.common b/Makefile.common
deleted file mode 100644
index e18ce019e4..0000000000
--- a/Makefile.common
+++ /dev/null
@@ -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