Makefile.in revision 75115
1#  Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
2# 	The Regents of the University of California.  All rights reserved.
3#
4#  Redistribution and use in source and binary forms, with or without
5#  modification, are permitted provided that: (1) source code distributions
6#  retain the above copyright notice and this paragraph in its entirety, (2)
7#  distributions including binary code include the above copyright notice and
8#  this paragraph in its entirety in the documentation or other materials
9#  provided with the distribution, and (3) all advertising materials mentioning
10#  features or use of this software display the following acknowledgement:
11#  ``This product includes software developed by the University of California,
12#  Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
13#  the University nor the names of its contributors may be used to endorse
14#  or promote products derived from this software without specific prior
15#  written permission.
16#  THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
17#  WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
18#  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19#
20# @(#) $Header: /tcpdump/master/tcpdump/Makefile.in,v 1.244 2000/12/21 10:43:20 guy Exp $ (LBL)
21
22#
23# Various configurable paths (remember to edit Makefile.in, not Makefile)
24#
25
26# Top level hierarchy
27prefix = @prefix@
28exec_prefix = @exec_prefix@
29# Pathname of directory to install the binary
30sbindir = @sbindir@
31# Pathname of directory to install the man page
32mandir = @mandir@
33
34# VPATH
35srcdir = @srcdir@
36VPATH = @srcdir@
37
38#
39# You shouldn't need to edit anything below here.
40#
41
42CC = @CC@
43PROG = tcpdump
44CCOPT = @V_CCOPT@
45INCLS = -I. @V_INCLS@
46DEFS = @DEFS@
47
48# Standard CFLAGS
49CFLAGS = $(CCOPT) $(DEFS) $(INCLS)
50
51# Standard LDFLAGS
52LDFLAGS = @LDFLAGS@
53
54# Standard LIBS
55LIBS = @LIBS@
56
57INSTALL = @INSTALL@
58INSTALL_PROGRAM = @INSTALL_PROGRAM@
59INSTALL_DATA = @INSTALL_DATA@
60
61# Explicitly define compilation rule since SunOS 4's make doesn't like gcc.
62# Also, gcc does not remove the .o before forking 'as', which can be a
63# problem if you don't own the file but can write to the directory.
64.c.o:
65	@rm -f $@
66	$(CC) $(CFLAGS) -c $(srcdir)/$*.c
67
68CSRC =	tcpdump.c \
69	print-arp.c print-atalk.c print-atm.c print-bootp.c \
70	print-decnet.c print-domain.c print-dvmrp.c print-egp.c \
71	print-ether.c print-fddi.c print-gre.c print-icmp.c print-igmp.c \
72	print-igrp.c print-ip.c print-ipx.c print-isoclns.c print-krb.c \
73	print-llc.c print-nfs.c print-ntp.c print-null.c print-ospf.c \
74	print-pim.c print-ppp.c print-raw.c print-rip.c print-sl.c \
75	print-snmp.c print-stp.c print-sunrpc.c print-tcp.c print-tftp.c \
76	print-udp.c print-wb.c addrtoname.c gmt2local.c machdep.c \
77	parsenfsfh.c util.c savestr.c setsignal.c \
78	print-esp.c print-ah.c print-vjc.c print-isakmp.c print-chdlc.c \
79	print-ipcomp.c print-mobile.c print-l2tp.c print-bgp.c print-rx.c \
80	print-lane.c print-cip.c print-pppoe.c print-lcp.c \
81	print-smb.c smbutil.c print-ascii.c print-telnet.c print-cnfp.c \
82	print-vrrp.c print-cdp.c print-token.c print-bxxp.c print-timed.c \
83	print-radius.c print-sll.c
84
85LOCALSRC = @LOCALSRC@
86GENSRC = version.c
87LIBOBJS = @LIBOBJS@
88
89SRC =	$(CSRC) $(GENSRC) $(LOCALSRC)
90
91# We would like to say "OBJ = $(SRC:.c=.o)" but Ultrix's make cannot
92# hack the extra indirection
93OBJ =	$(CSRC:.c=.o) $(GENSRC:.c=.o) $(LOCALSRC:.c=.o) $(LIBOBJS)
94HDR =   addrtoname.h appletalk.h bootp.h decnet.h \
95	ethertype.h extract.h fddi.h gmt2local.h igrp.h interface.h \
96	ipx.h llc.h machdep.h mib.h nfsfh.h nfsv2.h ntp.h ospf.h \
97	savestr.c setsignal.h \
98	gnuc.h ipsec_doi.h isakmp.h l2tp.h nameser.h \
99	netbios.h oakley.h ospf6.h ppp.h route6d.h
100
101TAGHDR = \
102	/usr/include/arpa/tftp.h \
103	/usr/include/net/if_arp.h \
104	/usr/include/net/slip.h \
105	/usr/include/netinet/if_ether.h \
106	/usr/include/netinet/in.h \
107	/usr/include/netinet/ip_icmp.h \
108	/usr/include/netinet/tcp.h \
109	/usr/include/netinet/udp.h \
110	/usr/include/protocols/routed.h
111
112TAGFILES = $(SRC) $(HDR) $(TAGHDR)
113
114CLEANFILES = $(PROG) $(OBJ) $(GENSRC)
115
116all: $(PROG)
117
118$(PROG): $(OBJ) @V_PCAPDEP@
119	@rm -f $@
120	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
121
122getnameinfo.o: $(srcdir)/missing/getnameinfo.c
123	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/getnameinfo.c
124getaddrinfo.o: $(srcdir)/missing/getaddrinfo.c
125	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/getaddrinfo.c
126inet_pton.o: $(srcdir)/missing/inet_pton.c
127	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/inet_pton.c
128inet_ntop.o: $(srcdir)/missing/inet_ntop.c
129	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/inet_ntop.c
130inet_aton.o: $(srcdir)/missing/inet_aton.c
131	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/inet_aton.c
132snprintf.o: $(srcdir)/missing/snprintf.c
133	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/snprintf.c
134strlcat.o: $(srcdir)/missing/strlcat.c
135	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/strlcat.c
136strlcpy.o: $(srcdir)/missing/strlcpy.c
137	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/strlcpy.c
138
139version.o: version.c
140	$(CC) $(CFLAGS) -c version.c
141
142version.c: $(srcdir)/VERSION
143	@rm -f $@
144	sed -e 's/.*/char version[] = "&";/' $(srcdir)/VERSION > $@
145
146install:
147	[ -d $(DESTDIR)$(sbindir) ] || \
148	    (mkdir -p $(DESTDIR)$(sbindir); chmod 755 $(DESTDIR)$(sbindir))
149	$(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG)
150	[ -d $(DESTDIR)$(mandir)/man1 ] || \
151	    (mkdir -p $(DESTDIR)$(mandir)/man1; chmod 755 $(DESTDIR)$(mandir)/man1)
152	$(INSTALL_DATA) $(srcdir)/$(PROG).1 $(DESTDIR)$(mandir)/man1/$(PROG).1
153
154uninstall:
155	rm -f $(DESTDIR)$(sbindir)/$(PROG)
156	rm -f $(DESTDIR)$(mandir)/man1/$(PROG).1
157
158lint: $(GENSRC)
159	lint -hbxn $(SRC) | \
160	    grep -v 'struct/union .* never defined' | \
161	    grep -v 'possible pointer alignment problem'
162
163clean:
164	rm -f $(CLEANFILES)
165
166distclean:
167	rm -f $(CLEANFILES) Makefile config.cache config.log config.status \
168	    config.h gnuc.h os-proto.h stamp-h stamp-h.in
169
170tags: $(TAGFILES)
171	ctags -wtd $(TAGFILES)
172
173tar:
174	@cwd=`pwd` ; dir=`basename $$cwd` ; name=$(PROG)-`cat VERSION` ; \
175	    list="" ; tar="tar chf" ; \
176	    for i in `cat FILES` ; do list="$$list $$name/$$i" ; done; \
177	    echo \
178	    "rm -f ../$$name; ln -s $$dir ../$$name" ; \
179	     rm -f ../$$name; ln -s $$dir ../$$name ; \
180	    echo \
181	    "(cd .. ; $$tar - [lots of files]) | compress > /tmp/$$name.tar.Z" ; \
182	     (cd .. ; $$tar - $$list) | compress > /tmp/$$name.tar.Z ; \
183	    echo \
184	    "rm -f ../$$name" ; \
185	     rm -f ../$$name
186
187depend: $(GENSRC)
188	${srcdir}/mkdep -c $(CC) $(DEFS) $(INCLS) $(SRC)
189