aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.am
blob: d25e3341c662885672f8172a372d3c826047d691 (plain)
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
bin_PROGRAMS = ethereal

man_MANS = ethereal.1

ethereal_SOURCES = \
	capture.c      \
	ethereal.c     \
	ethertype.c    \
	file.c         \
	filter.c       \
	follow.c       \
	menu.c         \
	packet.c       \
	packet-arp.c   \
	packet-bootp.c \
	packet-data.c  \
	packet-dns.c   \
	packet-eth.c   \
	packet-llc.c   \
	packet-lpd.c   \
	packet-ip.c    \
	packet-ipv6.c  \
	packet-ipx.c   \
	packet-osi.c   \
	packet-ospf.c  \
	packet-ppp.c   \
	packet-raw.c   \
	packet-rip.c   \
	packet-tcp.c   \
	packet-tr.c    \
	packet-trmac.c \
	packet-udp.c   \
	packet-vines.c \
	print.c        \
	ps.c           \
	resolv.c       \
	util.c         \
	capture.h      \
	config.h       \
	ethereal.h     \
	etypes.h       \
	file.h         \
	filter.h       \
	follow.h       \
	menu.h         \
	packet.h       \
	packet-ipv6.h  \
	packet-ospf.h  \
	packet-rip.h   \
	packet-vines.h \
	print.h        \
	ps.h           \
	resolv.h       \
	snprintf.h     \
	util.h

ps.c: print.ps rdps
	./rdps print.ps ps.c

rdps: rdps.c
	$(CC) -o rdps rdps.c

EXTRA_ethereal_SOURCES = @SNPRINTF_C@
ethereal_DEPENDENCIES = @SNPRINTF_O@
LDADD = @SNPRINTF_O@

EXTRA_DIST =            \
	ethereal.1          \
	snprintf.c          \
	rdps.c              \
	print.ps            \
	image/icon-excl.xpm \
	doc/Makefile        \
	doc/ethereal.pod