Fix build (automake) error: WIRESHARK_CUSTOM_HEADERS is ng but WIRESHARK_CUSTOM_HDRS...
[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 text_import_scanner_lex.h: text_import_scanner.c
45
46 wireshark-tap-register.c: $(WIRESHARK_TAP_SRC) $(top_srcdir)/tools/make-tapreg-dotc
47         @echo Making wireshark-tap-register.c
48         @$(top_srcdir)/tools/make-tapreg-dotc wireshark-tap-register.c $(srcdir) $(WIRESHARK_TAP_SRC)
49
50 libui_a_SOURCES = \
51         $(WIRESHARK_GTK_SRC) \
52         $(GENERATED_C_FILES) \
53         $(GENERATED_H_FILES) \
54         $(noinst_HEADERS) \
55         $(WIRESHARK_TAP_SRC)
56
57 libui_a_CFLAGS = $(AM_CLEAN_CFLAGS)
58
59 libui_a_DEPENDENCIES =
60
61
62 libui_dirty_a_SOURCES = \
63         $(DIRTY_GENERATED_C_FILES)
64
65 libui_dirty_a_DEPENDENCIES =
66
67 # Common headers
68 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/wiretap $(LIBGCRYPT_CFLAGS) $(LIBGNUTLS_CFLAGS) $(PORTAUDIO_INCLUDES)
69
70
71 doxygen:
72 if HAVE_DOXYGEN
73         $(DOXYGEN) doxygen.cfg
74 endif           # HAVE_DOXYGEN
75
76 checkapi: checkapi-base checkapi-todo
77
78 checkapi-base:
79         $(PERL) ../tools/checkAPIs.pl -g deprecated-gtk \
80         $(WIRESHARK_GTK_SRC) \
81         $(WIRESHARK_TAP_SRC) \
82         capture_if_details_dlg_win32.c \
83         gtkvumeter.c
84
85 checkapi-todo:
86         $(PERL) ../tools/checkAPIs.pl -M -g deprecated-gtk-todo \
87         $(WIRESHARK_GTK_SRC) \
88         $(WIRESHARK_TAP_SRC) \
89         capture_if_details_dlg_win32.c \
90         gtkvumeter.c
91
92 expert_indicators.h:
93         echo "/* This file was automatically generated. DO NOT EDIT. */" > $@
94         echo >> $@
95         for elevel in chat error none note warn ; do \
96                 gdk-pixbuf-csource --raw --name=expert_$${elevel}_pb_data ../image/expert_$${elevel}.png >> $@ ;\
97         done
98
99 network_icons.h:
100         echo "/* This file was automatically generated. DO NOT EDIT. */" > $@
101         echo >> $@
102         for icon in bluetooth usb wired wireless ; do \
103                 gdk-pixbuf-csource --raw --name=network_$${icon}_pb_data ../image/toolbar/network_$${icon}_16.png >> $@ ;\
104         done
105
106 EXTRA_DIST = \
107         $(GENERATOR_FILES)      \
108         airpcap_dlg.c                   \
109         airpcap_gui_utils.c             \
110         capture_if_details_dlg_win32.c  \
111         capture_if_details_dlg_win32.h  \
112         gtkvumeter.c                    \
113         gtkvumeter.h                    \
114         doxygen.cfg.in                  \
115         libui.vcproj                    \
116         main_airpcap_toolbar.c          \
117         Makefile.common                 \
118         Makefile.nmake                  \
119         CMakeLists.txt                  \
120         Makefile_custom.common