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

man_MANS = ethereal.1

sysconf_DATA = manuf

ethereal_SOURCES = \
	capture.c      \
	column.c       \
	ethereal.c     \
	ethertype.c    \
	file.c         \
	filter.c       \
	follow.c       \
	gtkpacket.c    \
	menu.c         \
	packet.c       \
	packet-aarp.c  \
	packet-arp.c   \
	packet-atalk.c \
	packet-bootp.c \
	packet-cdp.c   \
	packet-data.c  \
	packet-dns.c   \
	packet-eth.c   \
	packet-ftp.c   \
	packet-fddi.c  \
	packet-giop.c  \
	packet-http.c  \
	packet-ip.c    \
	packet-icmpv6.c \
	packet-ipsec.c \
	packet-ipv6.c  \
	packet-ipx.c   \
	packet-llc.c   \
	packet-lpd.c   \
	packet-nbipx.c \
	packet-nbns.c  \
	packet-ncp.c   \
	packet-null.c  \
	packet-osi.c   \
	packet-ospf.c  \
	packet-pop.c   \
	packet-ppp.c   \
	packet-raw.c   \
	packet-rip.c   \
	packet-tcp.c   \
	packet-telnet.c \
	packet-tftp.c  \
	packet-tr.c    \
	packet-trmac.c \
	packet-udp.c   \
	packet-vines.c \
	prefs.c        \
	print.c        \
	ps.c           \
	resolv.c       \
	util.c         \
	capture.h      \
	column.h       \
	config.h       \
	ethereal.h     \
	etypes.h       \
	file.h         \
	filter.h       \
	follow.h       \
	menu.h         \
	packet.h       \
	packet-dns.h   \
	packet-ipv6.h  \
	packet-ipx.h   \
	packet-ncp.h   \
	packet-ospf.h  \
	packet-rip.h   \
	packet-vines.h \
	prefs.h        \
	print.h        \
	ps.h           \
	resolv.h       \
	util.h

EXTRA_ethereal_SOURCES = \
	snprintf.c           \
	snprintf.h           \
	snprintf-imp.h

ethereal_DEPENDENCIES = @SNPRINTF_O@ @LIBWIRETAP_A@
ethereal_LDADD = @SNPRINTF_O@ @LIBWIRETAP_A@

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

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

DISTCLEANFILES =			\
	rdps 					\
	ps.c 					\
	*~

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

SUBDIRS = @SUBDIRS@