The Styleguide section has been moved to the Wireshark Developer's Guide.
[obnox/wireshark/wip.git] / gtk / Makefile.am
1 # Makefile.am
2 # Automake file for the GTK interface routines for Wireshark
3 #
4 # $Id$
5 #
6 # Wireshark - Network traffic analyzer
7 # By Gerald Combs <gerald@wireshark.org>
8 # Copyright 1998 Gerald Combs
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License
12 # as published by the Free Software Foundation; either version 2
13 # of the License, or (at your option) any later version.
14 #
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write to the Free Software
22 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23
24 include Makefile.common
25 include ../Makefile.am.inc
26
27 if HAVE_WARNINGS_AS_ERRORS
28 AM_CLEAN_CFLAGS = -Werror
29 endif
30
31 noinst_LIBRARIES = libui.a libui_dirty.a
32
33 CLEANFILES = \
34         libui.a         \
35         libui_dirty.a   \
36         *~
37
38 MAINTAINERCLEANFILES = \
39         $(GENERATED_FILES)      \
40         Makefile.in
41
42 RUNLEX=$(top_srcdir)/tools/runlex.sh
43
44 wireshark-tap-register.c: $(WIRESHARK_TAP_SRC) $(top_srcdir)/tools/make-tapreg-dotc
45         @echo Making wireshark-tap-register.c
46         @$(top_srcdir)/tools/make-tapreg-dotc wireshark-tap-register.c $(srcdir) $(WIRESHARK_TAP_SRC)
47
48 libui_a_SOURCES = \
49         $(WIRESHARK_GTK_SRC) \
50         $(GENERATED_C_FILES) \
51         $(noinst_HEADERS) \
52         $(WIRESHARK_TAP_SRC)
53
54 libui_a_CFLAGS = $(AM_CLEAN_CFLAGS)
55
56 libui_a_DEPENDENCIES =
57
58
59 libui_dirty_a_SOURCES = \
60         $(DIRTY_GENERATED_C_FILES)
61
62 libui_dirty_a_DEPENDENCIES =
63
64 # Common headers
65 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/wiretap $(LIBGCRYPT_CFLAGS) $(LIBGNUTLS_CFLAGS) $(PORTAUDIO_INCLUDES)
66
67
68 doxygen:
69 if HAVE_DOXYGEN
70         $(DOXYGEN) doxygen.cfg
71 endif           # HAVE_DOXYGEN
72
73 checkapi:
74         $(PERL) ../tools/checkAPIs.pl \
75         $(WIRESHARK_GTK_SRC) \
76         $(WIRESHARK_TAP_SRC) \
77         capture_if_details_dlg_win32.c
78
79 expert_indicators.h:
80         echo "/* This file was automatically generated. DO NOT EDIT. */" > $@
81         echo >> $@
82         for elevel in chat error none note warn ; do \
83                 gdk-pixbuf-csource --raw --name=expert_$${elevel}_pb_data ../image/expert_$${elevel}.png >> $@ ;\
84         done
85
86 network_icons.h:
87         echo "/* This file was automatically generated. DO NOT EDIT. */" > $@
88         echo >> $@
89         for icon in bluetooth usb wired wireless ; do \
90                 gdk-pixbuf-csource --raw --name=network_$${icon}_pb_data ../image/toolbar/network_$${icon}_16.png >> $@ ;\
91         done
92
93 EXTRA_DIST = \
94         airpcap_dlg.c                   \
95         airpcap_gui_utils.c             \
96         capture_if_details_dlg_win32.c  \
97         capture_if_details_dlg_win32.h  \
98         doxygen.cfg.in                  \
99         libui.vcproj                    \
100         main_airpcap_toolbar.c          \
101         Makefile.common                 \
102         Makefile.nmake                  \
103         CMakeLists.txt