~jelmer/wireshark/daily-ppa

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# Makefile.am
#
# $Id: Makefile.am 33009 2010-05-28 11:48:29Z jmayer $
#
# 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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#

if HAVE_WARNINGS_AS_ERRORS
AM_CFLAGS = -Werror
endif

INCLUDES = -I$(top_srcdir) @LUA_INCLUDES@

noinst_LTLIBRARIES = libwslua.la

wslua_modules = 	\
	$(srcdir)/lua_bitop.c \
	$(srcdir)/wslua_tvb.c \
	$(srcdir)/wslua_proto.c \
	$(srcdir)/wslua_tree.c \
	$(srcdir)/wslua_pinfo.c \
	$(srcdir)/wslua_listener.c \
	$(srcdir)/wslua_gui.c \
	$(srcdir)/wslua_util.c \
	$(srcdir)/wslua_field.c \
	$(srcdir)/wslua_dumper.c

libwslua_la_SOURCES = \
	$(wslua_modules) \
	taps_wslua.c \
	register_wslua.c \
	init_wslua.c \
	wslua.h

libwslua_la_LIBADD = @LUA_LIBS@

BUILT_SOURCES = \
	taps_wslua.c \
	register_wslua.c \
	declare_wslua.h

dist_pkgdata_DATA = \
	console.lua \
	dtd_gen.lua

nodist_pkgdata_DATA = \
	init.lua

CLEANFILES = \
	*~

DISTCLEANFILES = \
	$(BUILT_SOURCES) \
	taps.txt \
	wslua_register.h \
	init.lua

MAINTAINERCLEANFILES = \
	Makefile.in	\
	register_wslua.c \
	declare_wslua.h

EXTRA_DIST = \
	declare_wslua.h		\
	init_wslua.h		\
	register_wslua.c	\
	taps			\
	make-reg.pl		\
	template-init.lua	\
	make-init-lua.pl	\
	make-taps.pl		\
	Makefile.nmake		\
	CMakeLists.txt

taps_used = \
	../dissectors/packet-http.h \
	../dissectors/packet-ip.h \
	../dissectors/packet-udp.h \
	../dissectors/packet-h225.h \
	../dissectors/packet-ieee80211.h

taps: $(taps_used)
	touch taps

taps_wslua.c: make-taps.pl taps
	$(PERL) $(srcdir)/make-taps.pl taps taps_wslua.c taps.txt

taps.txt: taps_wslua.c

wslua.h: declare_wslua.h

register_wslua.c: declare_wslua.h

declare_wslua.h: make-reg.pl $(wslua_modules) taps_wslua.c
	$(PERL) $(srcdir)/make-reg.pl $(wslua_modules);

dummy:
	touch dummy

init.lua: template-init.lua make-init-lua.pl ../ftypes/ftypes.h ../../wiretap/wtap.h  ../proto.h ../../stat_menu.h
	$(PERL) $(srcdir)/make-init-lua.pl $(top_srcdir) $(srcdir)/template-init.lua > init.lua

checkapi:
	$(PERL) ../../tools/checkAPIs.pl -g termoutput \
	init_wslua.c \
	register_wslua.c \
	taps_wslua.c \
	wslua_dumper.c \
	wslua_field.c \
	wslua_gui.c \
	wslua_pinfo.c \
	wslua_proto.c \
	wslua_listener.c \
	wslua_tree.c \
	wslua_tvb.c \
	wslua_util.c