Add main_menubar.c
[obnox/wireshark/wip.git] / Makefile.common
index 9cb087ec4fc5f06912f71ed32582c59bc4008aa3..cf24b77b0e85053b87f16c5c3aedda4975444fa2 100644 (file)
@@ -44,101 +44,108 @@ GENERATED_C_FILES = \
 # All the generated files.
 GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)
 
-# sources common for ethereal and tshark
-ETHEREAL_COMMON_SRC =  \
+# sources common for wireshark, tshark, and rawshark
+WIRESHARK_COMMON_SRC = \
        $(PLATFORM_SRC) \
-       capture_errs.c  \
        capture-pcap-util.c     \
-       capture_stop_conditions.c       \
-       capture_ui_utils.c      \
        cfile.c \
        clopts_common.c \
-       conditions.c    \
        disabled_protos.c       \
+       frame_data_sequence.c   \
        packet-range.c  \
        print.c \
        ps.c    \
-       pcapio.c        \
-       ringbuffer.c    \
+       sync_pipe_write.c       \
        timestats.c     \
        util.c  \
+       tap-megaco-common.c     \
+       tap-rtp-common.c        \
        version_info.c
 
 # corresponding headers
-ETHEREAL_COMMON_INCLUDES =     \
+WIRESHARK_COMMON_INCLUDES =    \
        svnversion.h            \
-       capture_errs.h  \
        capture-pcap-util.h     \
        capture-pcap-util-int.h \
-       capture_stop_conditions.h       \
-       capture_ui_utils.h      \
        cfile.h \
        clopts_common.h \
        cmdarg_err.h    \
+       console_io.h    \
        color.h \
-       conditions.h    \
        disabled_protos.h       \
        file.h  \
        fileset.h       \
+       frame_data_sequence.h   \
        isprint.h       \
        packet-range.h  \
-       pcapio.h        \
        print.h \
        ps.h    \
        register.h      \
-       ringbuffer.h    \
        tempfile.h      \
        timestats.h     \
        util.h  \
+       tap-megaco-common.h     \
+       tap-rtp-common.h        \
        version_info.h
 
+# sources common for wireshark and tshark, but not rawshark;
+# these are for programs that capture traffic by running dumpcap
+SHARK_COMMON_CAPTURE_SRC =     \
+       capture_errs.c          \
+       capture_ifinfo.c        \
+       capture_ui_utils.c
+
+# corresponding headers
+SHARK_COMMON_CAPTURE_INCLUDES =        \
+       capture_errs.h  \
+       capture_ifinfo.h        \
+       capture_ui_utils.h
+
 # sources for TShark taps
 TSHARK_TAP_SRC =       \
        tap-afpstat.c   \
        tap-ansi_astat.c        \
        tap-bootpstat.c \
+       tap-camelcounter.c      \
+       tap-camelsrt.c  \
+       tap-comparestat.c       \
        tap-dcerpcstat.c        \
+       tap-diameter-avp.c \
        tap-funnel.c \
        tap-gsm_astat.c \
        tap-h225counter.c       \
        tap-h225rassrt.c        \
+       tap-hosts.c     \
        tap-httpstat.c  \
+       tap-icmpstat.c  \
+       tap-icmpv6stat.c        \
        tap-iostat.c    \
        tap-iousers.c   \
+       tap-macltestat.c        \
        tap-mgcpstat.c  \
+       tap-megacostat.c        \
        tap-protocolinfo.c      \
        tap-protohierstat.c     \
+       tap-radiusstat.c        \
+       tap-rlcltestat.c        \
        tap-rpcstat.c   \
        tap-rpcprogs.c  \
+       tap-rtp.c       \
+       tap-rtspstat.c  \
+       tap-scsistat.c  \
        tap-sctpchunkstat.c     \
        tap-sipstat.c \
        tap-smbsids.c   \
        tap-smbstat.c   \
        tap-stats_tree.c        \
+       tap-sv.c \
        tap-wspstat.c
 
-# helpers already available on some platforms (and on others not)
-EXTRA_ethereal_SOURCES =       \
-       getopt.c        \
-       mkstemp.c       \
-       snprintf.c      \
-       strerror.c      \
-       strcasecmp.c    \
-       strncasecmp.c   \
-       strptime.c
-
-# corresponding headers
-EXTRA_ethereal_INCLUDES =      \
-       getopt.h        \
-       mkstemp.h       \
-       snprintf.h      \
-       snprintf-imp.h  \
-       strerror.h      \
-       strptime.h
-
-# ethereal specifics
-ethereal_SOURCES =     \
-       $(ETHEREAL_COMMON_SRC)  \
+# wireshark specifics
+wireshark_SOURCES =    \
+       $(WIRESHARK_COMMON_SRC) \
+       $(SHARK_COMMON_CAPTURE_SRC) \
+       airpcap_loader.c \
        alert_box.c     \
        capture.c       \
        capture_info.c  \
@@ -151,16 +158,17 @@ ethereal_SOURCES =        \
        g711.c \
        merge.c \
        proto_hier_stats.c      \
-       sync_pipe_write.c       \
        summary.c       \
-       tempfile.c
+       tempfile.c      \
+       u3.c
 
 # corresponding headers
-ethereal_INCLUDES =    \
+wireshark_INCLUDES =   \
+       airpcap.h       \
+       airpcap_loader.h \
        alert_box.h     \
        capture.h       \
        capture_info.h  \
-       capture_loop.h  \
        capture_opts.h  \
        capture_sync.h  \
        color_filters.h \
@@ -168,29 +176,33 @@ ethereal_INCLUDES =       \
        g711.h  \
        globals.h       \
        log.h   \
-       main_window.h   \
-       menu.h  \
+       main_statusbar.h        \
        merge.h \
        progress_dlg.h  \
        proto_hier_stats.h      \
        simple_dialog.h \
        stat_menu.h     \
-       statusbar.h     \
        summary.h       \
        sync_pipe.h     \
-       tap_dfilter_dlg.h       \
+       u3.h    \
        ui_util.h
 
 # tshark specifics
 tshark_SOURCES =       \
-       $(ETHEREAL_COMMON_SRC)  \
+       $(WIRESHARK_COMMON_SRC) \
+       $(SHARK_COMMON_CAPTURE_SRC) \
        $(TSHARK_TAP_SRC)       \
        capture_opts.c          \
-       capture_loop.c          \
+       capture_sync.c          \
        tempfile.c              \
        tshark-tap-register.c   \
        tshark.c
 
+# rawshark specifics
+rawshark_SOURCES =     \
+       $(WIRESHARK_COMMON_SRC) \
+       rawshark.c
+
 # text2pcap specifics
 text2pcap_SOURCES = \
        text2pcap.c \
@@ -204,7 +216,14 @@ mergecap_SOURCES = \
 
 # editcap specifics
 editcap_SOURCES = \
-       editcap.c
+       editcap.c       \
+       epan/crypt/crypt-md5.c \
+       epan/nstime.c \
+       $(WTAP_PLUGIN_SOURCES)
+
+capinfos_SOURCES = \
+       capinfos.c \
+       $(WTAP_PLUGIN_SOURCES)
 
 # dftest specifics
 dftest_SOURCES =       \
@@ -219,7 +238,6 @@ randpkt_SOURCES = \
 dumpcap_SOURCES =      \
        $(PLATFORM_SRC) \
        capture_opts.c \
-       capture_loop.c  \
        capture-pcap-util.c     \
        capture_stop_conditions.c       \
        clopts_common.c \
@@ -231,9 +249,16 @@ dumpcap_SOURCES =  \
        tempfile.c      \
        version_info.c
 
+# corresponding headers
+dumpcap_INCLUDES = \
+       capture_stop_conditions.h       \
+       conditions.h    \
+       pcapio.h        \
+       ringbuffer.h
 
 # this target needed for distribution only
 noinst_HEADERS =       \
-       $(ETHEREAL_COMMON_INCLUDES) \
-       $(ethereal_INCLUDES) \
-       $(EXTRA_ethereal_INCLUDES)
+       $(WIRESHARK_COMMON_INCLUDES) \
+       $(SHARK_COMMON_CAPTURE_INCLUDES) \
+       $(wireshark_INCLUDES) \
+       $(dumpcap_INCLUDES)