From a16d401b25c85ffb7fde6c46b51cb7048112f885 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Valverde?= Date: Tue, 21 Jun 2016 05:06:23 +0100 Subject: Remove Makefile.common files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Tested-by: Petri Dish Buildbot Reviewed-by: João Valverde --- Makefile.common | 184 -------------------------------------------------------- 1 file changed, 184 deletions(-) delete mode 100644 Makefile.common (limited to 'Makefile.common') 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 -# 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 -- cgit v1.2.3