]> The Tcpdump Group git mirrors - libpcap/blob - Makefile.in
updates to CHANGES for libpcap 1.7
[libpcap] / Makefile.in
1 # Copyright (c) 1993, 1994, 1995, 1996
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 #
21 # Various configurable paths (remember to edit Makefile.in, not Makefile)
22 #
23
24 # Top level hierarchy
25 prefix = @prefix@
26 exec_prefix = @exec_prefix@
27 datarootdir = @datarootdir@
28 # Pathname of directory to install the configure program
29 bindir = @bindir@
30 # Pathname of directory to install the include files
31 includedir = @includedir@
32 # Pathname of directory to install the library
33 libdir = @libdir@
34 # Pathname of directory to install the man pages
35 mandir = @mandir@
36
37 # VPATH
38 srcdir = @srcdir@
39 VPATH = @srcdir@
40
41 #
42 # You shouldn't need to edit anything below.
43 #
44
45 LD = /usr/bin/ld
46 CC = @CC@
47 AR = @AR@
48 LN_S = @LN_S@
49 MKDEP = @MKDEP@
50 CCOPT = @V_CCOPT@
51 INCLS = -I. @V_INCLS@
52 DEFS = @DEFS@ @V_DEFS@
53 ADDLOBJS = @ADDLOBJS@
54 ADDLARCHIVEOBJS = @ADDLARCHIVEOBJS@
55 LIBS = @LIBS@
56 CFLAGS = @CFLAGS@
57 LDFLAGS = @LDFLAGS@
58 DYEXT = @DYEXT@
59 V_RPATH_OPT = @V_RPATH_OPT@
60 DEPENDENCY_CFLAG = @DEPENDENCY_CFLAG@
61 PROG=libpcap
62
63 # Standard CFLAGS
64 FULL_CFLAGS = $(CCOPT) $(INCLS) $(DEFS) $(CFLAGS)
65
66 INSTALL = @INSTALL@
67 INSTALL_PROGRAM = @INSTALL_PROGRAM@
68 INSTALL_DATA = @INSTALL_DATA@
69 RANLIB = @RANLIB@
70
71 #
72 # Flex and bison allow you to specify the prefixes of the global symbols
73 # used by the generated parser. This allows programs to use lex/yacc
74 # and link against libpcap. If you don't have flex or bison, get them.
75 #
76 LEX = @V_LEX@
77 YACC = @V_YACC@
78
79 # Explicitly define compilation rule since SunOS 4's make doesn't like gcc.
80 # Also, gcc does not remove the .o before forking 'as', which can be a
81 # problem if you don't own the file but can write to the directory.
82 .c.o:
83 @rm -f $@
84 $(CC) $(FULL_CFLAGS) -c $(srcdir)/$*.c
85
86 PSRC = pcap-@V_PCAP@.c @USB_SRC@ @BT_SRC@ @BT_MONITOR_SRC@ @CAN_SRC@ @NETFILTER_SRC@ @CANUSB_SRC@ @DBUS_SRC@
87 FSRC = fad-@V_FINDALLDEVS@.c
88 SSRC = @SSRC@
89 CSRC = pcap.c inet.c gencode.c optimize.c nametoaddr.c etherent.c \
90 savefile.c sf-pcap.c sf-pcap-ng.c pcap-common.c \
91 bpf_image.c bpf_dump.c
92 GENSRC = scanner.c grammar.c bpf_filter.c version.c
93 LIBOBJS = @LIBOBJS@
94
95 SRC = $(PSRC) $(FSRC) $(CSRC) $(SSRC) $(GENSRC)
96
97 # We would like to say "OBJ = $(SRC:.c=.o)" but Ultrix's make cannot
98 # hack the extra indirection
99 OBJ = $(PSRC:.c=.o) $(FSRC:.c=.o) $(CSRC:.c=.o) $(SSRC:.c=.o) $(GENSRC:.c=.o) $(LIBOBJS)
100 PUBHDR = \
101 pcap.h \
102 pcap-bpf.h \
103 pcap-namedb.h \
104 pcap/bpf.h \
105 pcap/bluetooth.h \
106 pcap/ipnet.h \
107 pcap/namedb.h \
108 pcap/nflog.h \
109 pcap/pcap.h \
110 pcap/sll.h \
111 pcap/vlan.h \
112 pcap/usb.h
113
114 HDR = $(PUBHDR) \
115 arcnet.h \
116 atmuni31.h \
117 ethertype.h \
118 gencode.h \
119 ieee80211.h \
120 llc.h \
121 nlpid.h \
122 pcap-common.h \
123 pcap-int.h \
124 pcap-stdinc.h \
125 ppp.h \
126 sf-pcap.h \
127 sf-pcap-ng.h \
128 sunatmpos.h
129
130 TESTS = \
131 capturetest \
132 filtertest \
133 findalldevstest \
134 opentest \
135 selpolltest \
136 valgrindtest
137
138 TESTS_SRC = \
139 tests/capturetest.c \
140 tests/filtertest.c \
141 tests/findalldevstest.c \
142 tests/opentest.c \
143 tests/reactivatetest.c \
144 tests/selpolltest.c \
145 tests/valgrindtest.c
146
147 GENHDR = \
148 scanner.h tokdefs.h version.h
149
150 TAGFILES = \
151 $(SRC) $(HDR)
152
153 CLEANFILES = $(OBJ) libpcap.* $(TESTS) \
154 $(PROG)-`cat $(srcdir)/VERSION`.tar.gz $(GENSRC) $(GENHDR) \
155 lex.yy.c pcap-config
156
157 MAN1 = pcap-config.1
158
159 MAN3PCAP_EXPAND = \
160 pcap.3pcap.in \
161 pcap_compile.3pcap.in \
162 pcap_datalink.3pcap.in \
163 pcap_dump_open.3pcap.in \
164 pcap_get_tstamp_precision.3pcap.in \
165 pcap_list_datalinks.3pcap.in \
166 pcap_list_tstamp_types.3pcap.in \
167 pcap_open_dead.3pcap.in \
168 pcap_open_offline.3pcap.in \
169 pcap_set_tstamp_precision.3pcap.in \
170 pcap_set_tstamp_type.3pcap.in
171
172 MAN3PCAP_NOEXPAND = \
173 pcap_activate.3pcap \
174 pcap_breakloop.3pcap \
175 pcap_can_set_rfmon.3pcap \
176 pcap_close.3pcap \
177 pcap_create.3pcap \
178 pcap_datalink_name_to_val.3pcap \
179 pcap_datalink_val_to_name.3pcap \
180 pcap_dump.3pcap \
181 pcap_dump_close.3pcap \
182 pcap_dump_file.3pcap \
183 pcap_dump_flush.3pcap \
184 pcap_dump_ftell.3pcap \
185 pcap_file.3pcap \
186 pcap_fileno.3pcap \
187 pcap_findalldevs.3pcap \
188 pcap_freecode.3pcap \
189 pcap_get_selectable_fd.3pcap \
190 pcap_geterr.3pcap \
191 pcap_inject.3pcap \
192 pcap_is_swapped.3pcap \
193 pcap_lib_version.3pcap \
194 pcap_lookupdev.3pcap \
195 pcap_lookupnet.3pcap \
196 pcap_loop.3pcap \
197 pcap_major_version.3pcap \
198 pcap_next_ex.3pcap \
199 pcap_offline_filter.3pcap \
200 pcap_open_live.3pcap \
201 pcap_set_buffer_size.3pcap \
202 pcap_set_datalink.3pcap \
203 pcap_set_immediate_mode.3pcap \
204 pcap_set_promisc.3pcap \
205 pcap_set_rfmon.3pcap \
206 pcap_set_snaplen.3pcap \
207 pcap_set_timeout.3pcap \
208 pcap_setdirection.3pcap \
209 pcap_setfilter.3pcap \
210 pcap_setnonblock.3pcap \
211 pcap_snapshot.3pcap \
212 pcap_stats.3pcap \
213 pcap_statustostr.3pcap \
214 pcap_strerror.3pcap \
215 pcap_tstamp_type_name_to_val.3pcap \
216 pcap_tstamp_type_val_to_name.3pcap
217
218 MAN3PCAP = $(MAN3PCAP_NOEXPAND) $(MAN3PCAP_EXPAND:.in=)
219
220 MANFILE = \
221 pcap-savefile.manfile.in
222
223 MANMISC = \
224 pcap-filter.manmisc.in \
225 pcap-linktype.manmisc.in \
226 pcap-tstamp.manmisc.in
227
228 EXTRA_DIST = \
229 $(TESTS_SRC) \
230 CHANGES \
231 ChmodBPF/ChmodBPF \
232 ChmodBPF/StartupParameters.plist \
233 CREDITS \
234 INSTALL.txt \
235 LICENSE \
236 Makefile.in \
237 Makefile-devel-adds \
238 README \
239 README.aix \
240 README.dag \
241 README.hpux \
242 README.linux \
243 README.macosx \
244 README.septel \
245 README.sita \
246 README.tru64 \
247 README.Win32 \
248 SUNOS4/nit_if.o.sparc \
249 SUNOS4/nit_if.o.sun3 \
250 SUNOS4/nit_if.o.sun4c.4.0.3c \
251 TODO \
252 VERSION \
253 aclocal.m4 \
254 bpf/net/bpf_filter.c \
255 chmod_bpf \
256 config.guess \
257 config.h.in \
258 config.sub \
259 configure \
260 configure.in \
261 dlpisubs.c \
262 dlpisubs.h \
263 fad-getad.c \
264 fad-gifc.c \
265 fad-glifc.c \
266 fad-null.c \
267 fad-sita.c \
268 fad-win32.c \
269 grammar.y \
270 install-sh \
271 lbl/os-aix4.h \
272 lbl/os-hpux11.h \
273 lbl/os-osf4.h \
274 lbl/os-osf5.h \
275 lbl/os-solaris2.h \
276 lbl/os-sunos4.h \
277 lbl/os-ultrix4.h \
278 missing/snprintf.c \
279 mkdep \
280 msdos/bin2c.c \
281 msdos/common.dj \
282 msdos/makefile \
283 msdos/makefile.dj \
284 msdos/makefile.wc \
285 msdos/ndis2.c \
286 msdos/ndis2.h \
287 msdos/ndis_0.asm \
288 msdos/pkt_rx0.asm \
289 msdos/pkt_rx1.s \
290 msdos/pktdrvr.c \
291 msdos/pktdrvr.h \
292 msdos/readme.dos \
293 org.tcpdump.chmod_bpf.plist \
294 packaging/pcap.spec.in \
295 pcap-bpf.c \
296 pcap-bt-linux.c \
297 pcap-bt-linux.h \
298 pcap-bt-monitor-linux.c \
299 pcap-bt-monitor-linux.h \
300 pcap-can-linux.c \
301 pcap-can-linux.h \
302 pcap-canusb-linux.c \
303 pcap-canusb-linux.h \
304 pcap-config.in \
305 pcap-dag.c \
306 pcap-dag.h \
307 pcap-dbus.c \
308 pcap-dbus.h \
309 pcap-dlpi.c \
310 pcap-dos.c \
311 pcap-dos.h \
312 pcap-enet.c \
313 pcap-int.h \
314 pcap-libdlpi.c \
315 pcap-linux.c \
316 pcap-namedb.h \
317 pcap-netfilter-linux.c \
318 pcap-netfilter-linux.h \
319 pcap-nit.c \
320 pcap-null.c \
321 pcap-pf.c \
322 pcap-septel.c \
323 pcap-septel.h \
324 pcap-sita.h \
325 pcap-sita.c \
326 pcap-sita.html \
327 pcap-snf.c \
328 pcap-snf.h \
329 pcap-snit.c \
330 pcap-snoop.c \
331 pcap-usb-linux.c \
332 pcap-usb-linux.h \
333 pcap-win32.c \
334 runlex.sh \
335 scanner.l \
336 Win32/Include/Gnuc.h \
337 Win32/Include/addrinfo.h \
338 Win32/Include/bittypes.h \
339 Win32/Include/cdecl_ext.h \
340 Win32/Include/inetprivate.h \
341 Win32/Include/ip6_misc.h \
342 Win32/Include/sockstorage.h \
343 Win32/Include/arpa/nameser.h \
344 Win32/Include/net/if.h \
345 Win32/Include/net/netdb.h \
346 Win32/Include/net/paths.h \
347 Win32/Prj/libpcap.dsp \
348 Win32/Prj/libpcap.dsw \
349 Win32/Src/ffs.c \
350 Win32/Src/gai_strerror.c \
351 Win32/Src/getaddrinfo.c \
352 Win32/Src/getnetbynm.c \
353 Win32/Src/getnetent.c \
354 Win32/Src/getopt.c \
355 Win32/Src/getservent.c \
356 Win32/Src/inet_aton.c \
357 Win32/Src/inet_net.c \
358 Win32/Src/inet_pton.c
359
360 all: libpcap.a shared pcap-config
361
362 libpcap.a: $(OBJ)
363 @rm -f $@
364 $(AR) rc $@ $(OBJ) $(ADDLARCHIVEOBJS)
365 $(RANLIB) $@
366
367 shared: libpcap.$(DYEXT)
368
369 libpcap.so: $(OBJ)
370 @rm -f $@
371 VER=`cat $(srcdir)/VERSION`; \
372 MAJOR_VER=`sed 's/\([0-9][0-9]*\)\..*/\1/' $(srcdir)/VERSION`; \
373 @V_SHLIB_CMD@ @V_SHLIB_OPT@ @V_SONAME_OPT@$@.$$MAJOR_VER $(LDFLAGS) \
374 -o $@.$$VER $(OBJ) $(ADDLOBJS) $(LIBS)
375
376 #
377 # The following rule succeeds, but the result is untested.
378 #
379 # In Mac OS X, the libpcap dylib has the name "libpcap.A.dylib", with
380 # its full path as the install_name, and with the compatibility and
381 # current version both set to 1. The compatibility version is set to
382 # 1 so that programs built with a newer version of the library will run
383 # against older versions; multi-platform software probably will fail if
384 # it uses APIs added in the newer version, but Mac OS X-specific software
385 # will use weak linking and check at run time whether those APIs are
386 # available.
387 #
388 # We also use "A" as the major version, and 1 as the compatibility version,
389 # but set the current version to the value in VERSION, with any non-numeric
390 # stuff stripped off (the compatibility and current version must be of the
391 # form X[.Y[.Z]], with Y and Z possibly absent, and with all components
392 # numeric).
393 #
394 libpcap.dylib: $(OBJ)
395 rm -f libpcap*.dylib
396 VER=`cat $(srcdir)/VERSION`; \
397 MAJOR_VER=A; \
398 COMPAT_VER=1; \
399 CURRENT_VER=`sed 's/[^0-9.].*$$//' $(srcdir)/VERSION`; \
400 $(CC) -dynamiclib -undefined error $(LDFLAGS) \
401 -o libpcap.$$VER.dylib $(OBJ) $(ADDLOBJS) $(LIBS) \
402 -install_name $(libdir)/libpcap.$$MAJOR_VER.dylib \
403 -compatibility_version $$COMPAT_VER \
404 -current_version $$CURRENT_VER
405
406 #
407 # The HP-UX linker manual says that the convention for a versioned library
408 # is libXXX.{number}, not libXXX.sl.{number}. That appears to be the case
409 # on at least one HP-UX 11.00 system; libXXX.sl is a symlink to
410 # libXXX.{number}.
411 #
412 # The manual also says "library-level versioning" (think "sonames") was
413 # added in HP-UX 10.0.
414 #
415 # XXX - this assumes we're using the HP linker, rather than the GNU
416 # linker, even with GCC.
417 #
418 libpcap.sl: $(OBJ)
419 @MAJOR_VER=`sed 's/\([0-9][0-9]*\)\..*/\1/' $(srcdir)/VERSION`; \
420 rm -f libpcap.$$MAJOR_VER
421 MAJOR_VER=`sed 's/\([0-9][0-9]*\)\..*/\1/' $(srcdir)/VERSION`; \
422 ld -b $(LDFLAGS) -o libpcap.$$MAJOR_VER +h libpcap.$$MAJOR_VER \
423 $(OBJ) $(ADDLOBJS) $(LIBS)
424
425 #
426 # AIX is different from everybody else. A shared library is an archive
427 # library with one or more shared-object components. We still build a
428 # normal static archive library on AIX, for the benefit of the traditional
429 # scheme of building libpcap and tcpdump in subdirectories of the
430 # same directory, with tcpdump statically linked with the libpcap
431 # in question, but we also build a shared library as "libpcap.shareda"
432 # and install *it*, rather than the static library, as "libpcap.a".
433 #
434 libpcap.shareda: $(OBJ)
435 @rm -f $@ shr.o
436 $(CC) @V_SHLIB_OPT@ -o shr.o $(OBJ) $(ADDLOBJS) $(LDFLAGS) $(LIBS)
437 $(AR) rc $@ shr.o
438
439 #
440 # For platforms that don't support shared libraries (or on which we
441 # don't support shared libraries).
442 #
443 libpcap.none:
444
445 scanner.c: $(srcdir)/scanner.l
446 @rm -f $@
447 $(srcdir)/runlex.sh $(LEX) -o$@ $<
448
449 scanner.o: scanner.c tokdefs.h
450 $(CC) $(FULL_CFLAGS) -c scanner.c
451
452 pcap.o: version.h
453
454 tokdefs.h: grammar.c
455 grammar.c: $(srcdir)/grammar.y
456 @rm -f grammar.c tokdefs.h
457 $(YACC) -d $<
458 mv y.tab.c grammar.c
459 mv y.tab.h tokdefs.h
460
461 grammar.o: grammar.c
462 @rm -f $@
463 $(CC) $(FULL_CFLAGS) -Dyylval=pcap_lval -c grammar.c
464
465 version.o: version.c
466 $(CC) $(FULL_CFLAGS) -c version.c
467
468 snprintf.o: $(srcdir)/missing/snprintf.c
469 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/snprintf.c
470
471 version.c: $(srcdir)/VERSION
472 @rm -f $@
473 if grep GIT ${srcdir}/VERSION >/dev/null; then \
474 read ver <${srcdir}/VERSION; \
475 echo $$ver | tr -d '\012'; \
476 date +_%Y_%m_%d; \
477 else \
478 cat ${srcdir}/VERSION; \
479 fi | sed -e 's/.*/char pcap_version[] = "&";/' > $@
480
481 #
482 # NOTE: this really is supposed to be static; importing a string
483 # from a shared library does not work very well on many
484 # versions of UNIX (Solaris, Linux, and the BSDs, for example),
485 # so we make the version string static and return it from
486 # a function, which does work.
487 #
488 version.h: $(srcdir)/VERSION
489 @rm -f $@
490 if grep GIT ${srcdir}/VERSION >/dev/null; then \
491 read ver <${srcdir}/VERSION; \
492 echo $$ver | tr -d '\012'; \
493 date +_%Y_%m_%d; \
494 else \
495 cat ${srcdir}/VERSION; \
496 fi | sed -e 's/.*/static const char pcap_version_string[] = "libpcap version &";/' > $@
497
498 bpf_filter.c: $(srcdir)/bpf/net/bpf_filter.c
499 rm -f bpf_filter.c
500 ln -s $(srcdir)/bpf/net/bpf_filter.c bpf_filter.c
501
502 bpf_filter.o: bpf_filter.c
503 $(CC) $(FULL_CFLAGS) -c bpf_filter.c
504
505 #
506 # Generate the pcap-config script.
507 #
508 # Some Makes, e.g. AIX Make and Solaris Make, can't handle "--file=$@.tmp:$<";
509 # for example, the Solaris 9 make man page says
510 #
511 # Because make assigns $< and $* as it would for implicit rules
512 # (according to the suffixes list and the directory contents),
513 # they may be unreliable when used within explicit target entries.
514 #
515 # and this is an explicit target entry.
516 #
517 # Therefore, instead of using $<, we explicitly put in $(srcdir)/pcap-config.in.
518 #
519 pcap-config: $(srcdir)/pcap-config.in ./config.status
520 @rm -f $@ $@.tmp
521 ./config.status --file=$@.tmp:$(srcdir)/pcap-config.in
522 mv $@.tmp $@
523 chmod a+x $@
524
525 #
526 # Test programs - not built by default, and not installed.
527 #
528 tests: $(TESTS)
529
530 capturetest: tests/capturetest.c libpcap.a
531 $(CC) $(FULL_CFLAGS) -I. -L. -o capturetest $(srcdir)/tests/capturetest.c libpcap.a $(LIBS)
532
533 filtertest: tests/filtertest.c libpcap.a
534 $(CC) $(FULL_CFLAGS) -I. -L. -o filtertest $(srcdir)/tests/filtertest.c libpcap.a $(LIBS)
535
536 findalldevstest: tests/findalldevstest.c libpcap.a
537 $(CC) $(FULL_CFLAGS) -I. -L. -o findalldevstest $(srcdir)/tests/findalldevstest.c libpcap.a $(LIBS)
538
539 opentest: tests/opentest.c libpcap.a
540 $(CC) $(FULL_CFLAGS) -I. -L. -o opentest $(srcdir)/tests/opentest.c libpcap.a $(LIBS)
541
542 selpolltest: tests/selpolltest.c libpcap.a
543 $(CC) $(FULL_CFLAGS) -I. -L. -o selpolltest $(srcdir)/tests/selpolltest.c libpcap.a $(LIBS)
544
545 valgrindtest: tests/valgrindtest.c libpcap.a
546 $(CC) $(FULL_CFLAGS) -I. -L. -o valgrindtest $(srcdir)/tests/valgrindtest.c libpcap.a $(LIBS)
547
548 install: install-shared install-archive pcap-config
549 [ -d $(DESTDIR)$(libdir) ] || \
550 (mkdir -p $(DESTDIR)$(libdir); chmod 755 $(DESTDIR)$(libdir))
551 [ -d $(DESTDIR)$(includedir) ] || \
552 (mkdir -p $(DESTDIR)$(includedir); chmod 755 $(DESTDIR)$(includedir))
553 [ -d $(DESTDIR)$(includedir)/pcap ] || \
554 (mkdir -p $(DESTDIR)$(includedir)/pcap; chmod 755 $(DESTDIR)$(includedir)/pcap)
555 [ -d $(DESTDIR)$(mandir)/man1 ] || \
556 (mkdir -p $(DESTDIR)$(mandir)/man1; chmod 755 $(DESTDIR)$(mandir)/man1)
557 [ -d $(DESTDIR)$(mandir)/man3 ] || \
558 (mkdir -p $(DESTDIR)$(mandir)/man3; chmod 755 $(DESTDIR)$(mandir)/man3)
559 [ -d $(DESTDIR)$(mandir)/man@MAN_FILE_FORMATS@ ] || \
560 (mkdir -p $(DESTDIR)$(mandir)/man@MAN_FILE_FORMATS@; chmod 755 $(DESTDIR)$(mandir)/man@MAN_FILE_FORMATS@)
561 [ -d $(DESTDIR)$(mandir)/man@MAN_MISC_INFO@ ] || \
562 (mkdir -p $(DESTDIR)$(mandir)/man@MAN_MISC_INFO@; chmod 755 $(DESTDIR)$(mandir)/man@MAN_MISC_INFO@)
563 for i in $(PUBHDR); do \
564 $(INSTALL_DATA) $(srcdir)/$$i \
565 $(DESTDIR)$(includedir)/$$i; done
566 [ -d $(DESTDIR)$(bindir) ] || \
567 (mkdir -p $(DESTDIR)$(bindir); chmod 755 $(DESTDIR)$(bindir))
568 $(INSTALL_PROGRAM) pcap-config $(DESTDIR)$(bindir)/pcap-config
569 for i in $(MAN1); do \
570 $(INSTALL_DATA) $(srcdir)/$$i \
571 $(DESTDIR)$(mandir)/man1/$$i; done
572 for i in $(MAN3PCAP_NOEXPAND); do \
573 $(INSTALL_DATA) $(srcdir)/$$i \
574 $(DESTDIR)$(mandir)/man3/$$i; done
575 for i in $(MAN3PCAP_EXPAND:.in=); do \
576 $(INSTALL_DATA) $$i \
577 $(DESTDIR)$(mandir)/man3/$$i; done
578 (cd $(DESTDIR)$(mandir)/man3 && \
579 rm -f pcap_datalink_val_to_description.3pcap && \
580 $(LN_S) pcap_datalink_val_to_name.3pcap \
581 pcap_datalink_val_to_description.3pcap && \
582 rm -f pcap_dump_fopen.3pcap && \
583 $(LN_S) pcap_dump_open.3pcap pcap_dump_fopen.3pcap && \
584 rm -f pcap_freealldevs.3pcap && \
585 $(LN_S) pcap_findalldevs.3pcap pcap_freealldevs.3pcap && \
586 rm -f pcap_perror.3pcap && \
587 $(LN_S) pcap_geterr.3pcap pcap_perror.3pcap && \
588 rm -f pcap_sendpacket.3pcap && \
589 $(LN_S) pcap_inject.3pcap pcap_sendpacket.3pcap && \
590 rm -f pcap_free_datalinks.3pcap && \
591 $(LN_S) pcap_list_datalinks.3pcap pcap_free_datalinks.3pcap && \
592 rm -f pcap_free_tstamp_types.3pcap && \
593 $(LN_S) pcap_list_tstamp_types.3pcap pcap_free_tstamp_types.3pcap && \
594 rm -f pcap_dispatch.3pcap && \
595 $(LN_S) pcap_loop.3pcap pcap_dispatch.3pcap && \
596 rm -f pcap_minor_version.3pcap && \
597 $(LN_S) pcap_major_version.3pcap pcap_minor_version.3pcap && \
598 rm -f pcap_next.3pcap && \
599 $(LN_S) pcap_next_ex.3pcap pcap_next.3pcap && \
600 rm -f pcap_open_dead_with_tstamp_precision.3pcap && \
601 $(LN_S) pcap_open_dead.3pcap \
602 pcap_open_dead_with_tstamp_precision.3pcap && \
603 rm -f pcap_open_offline_with_tstamp_precision.3pcap && \
604 $(LN_S) pcap_open_offline.3pcap pcap_open_offline_with_tstamp_precision.3pcap && \
605 rm -f pcap_fopen_offline.3pcap && \
606 $(LN_S) pcap_open_offline.3pcap pcap_fopen_offline.3pcap && \
607 rm -f pcap_fopen_offline_with_tstamp_precision.3pcap && \
608 $(LN_S) pcap_open_offline.3pcap pcap_fopen_offline_with_tstamp_precision.3pcap && \
609 rm -f pcap_tstamp_type_val_to_description.3pcap && \
610 $(LN_S) pcap_tstamp_type_val_to_name.3pcap pcap_tstamp_type_val_to_description.3pcap && \
611 rm -f pcap_getnonblock.3pcap && \
612 $(LN_S) pcap_setnonblock.3pcap pcap_getnonblock.3pcap)
613 for i in $(MANFILE); do \
614 $(INSTALL_DATA) `echo $$i | sed 's/.manfile.in/.manfile/'` \
615 $(DESTDIR)$(mandir)/man@MAN_FILE_FORMATS@/`echo $$i | sed 's/.manfile.in/.@MAN_FILE_FORMATS@/'`; done
616 for i in $(MANMISC); do \
617 $(INSTALL_DATA) `echo $$i | sed 's/.manmisc.in/.manmisc/'` \
618 $(DESTDIR)$(mandir)/man@MAN_MISC_INFO@/`echo $$i | sed 's/.manmisc.in/.@MAN_MISC_INFO@/'`; done
619
620 install-shared: install-shared-$(DYEXT)
621 install-shared-so: libpcap.so
622 [ -d $(DESTDIR)$(libdir) ] || \
623 (mkdir -p $(DESTDIR)$(libdir); chmod 755 $(DESTDIR)$(libdir))
624 VER=`cat $(srcdir)/VERSION`; \
625 MAJOR_VER=`sed 's/\([0-9][0-9]*\)\..*/\1/' $(srcdir)/VERSION`; \
626 $(INSTALL_PROGRAM) libpcap.so.$$VER $(DESTDIR)$(libdir)/libpcap.so.$$VER; \
627 ln -sf libpcap.so.$$VER $(DESTDIR)$(libdir)/libpcap.so.$$MAJOR_VER; \
628 ln -sf libpcap.so.$$MAJOR_VER $(DESTDIR)$(libdir)/libpcap.so
629 install-shared-dylib: libpcap.dylib
630 [ -d $(DESTDIR)$(libdir) ] || \
631 (mkdir -p $(DESTDIR)$(libdir); chmod 755 $(DESTDIR)$(libdir))
632 VER=`cat $(srcdir)/VERSION`; \
633 MAJOR_VER=A; \
634 $(INSTALL_PROGRAM) libpcap.$$VER.dylib $(DESTDIR)$(libdir)/libpcap.$$VER.dylib; \
635 ln -sf libpcap.$$VER.dylib $(DESTDIR)$(libdir)/libpcap.$$MAJOR_VER.dylib; \
636 ln -sf libpcap.$$MAJOR_VER.dylib $(DESTDIR)$(libdir)/libpcap.dylib
637 install-shared-sl: libpcap.sl
638 [ -d $(DESTDIR)$(libdir) ] || \
639 (mkdir -p $(DESTDIR)$(libdir); chmod 755 $(DESTDIR)$(libdir))
640 MAJOR_VER=`sed 's/\([0-9][0-9]*\)\..*/\1/' $(srcdir)/VERSION`; \
641 $(INSTALL_PROGRAM) libpcap.$$MAJOR_VER $(DESTDIR)$(libdir)
642 ln -sf libpcap.$$MAJOR_VER $(DESTDIR)$(libdir)/libpcap.sl
643 install-shared-shareda: libpcap.shareda
644 #
645 # AIX shared libraries are weird. They're archive libraries
646 # with one or more shared object components.
647 #
648 [ -d $(DESTDIR)$(libdir) ] || \
649 (mkdir -p $(DESTDIR)$(libdir); chmod 755 $(DESTDIR)$(libdir))
650 $(INSTALL_PROGRAM) libpcap.shareda $(DESTDIR)$(libdir)/libpcap.a
651 install-shared-none:
652
653 install-archive: install-archive-$(DYEXT)
654 install-archive-so install-archive-dylib install-archive-sl install-archive-none: libpcap.a
655 #
656 # Most platforms have separate suffixes for shared and
657 # archive libraries, so we install both.
658 #
659 [ -d $(DESTDIR)$(libdir) ] || \
660 (mkdir -p $(DESTDIR)$(libdir); chmod 755 $(DESTDIR)$(libdir))
661 $(INSTALL_DATA) libpcap.a $(DESTDIR)$(libdir)/libpcap.a
662 $(RANLIB) $(DESTDIR)$(libdir)/libpcap.a
663 install-archive-shareda:
664 #
665 # AIX, however, doesn't, so we don't install the archive
666 # library on AIX.
667 #
668
669 uninstall: uninstall-shared
670 rm -f $(DESTDIR)$(libdir)/libpcap.a
671 for i in $(PUBHDR); do \
672 rm -f $(DESTDIR)$(includedir)/$$i; done
673 -rmdir $(DESTDIR)$(includedir)/pcap
674 rm -f $(DESTDIR)/$(bindir)/pcap-config
675 for i in $(MAN1); do \
676 rm -f $(DESTDIR)$(mandir)/man1/$$i; done
677 for i in $(MAN3PCAP); do \
678 rm -f $(DESTDIR)$(mandir)/man3/$$i; done
679 rm -f $(DESTDIR)$(mandir)/man3/pcap_datalink_val_to_description.3pcap
680 rm -f $(DESTDIR)$(mandir)/man3/pcap_dump_fopen.3pcap
681 rm -f $(DESTDIR)$(mandir)/man3/pcap_freealldevs.3pcap
682 rm -f $(DESTDIR)$(mandir)/man3/pcap_perror.3pcap
683 rm -f $(DESTDIR)$(mandir)/man3/pcap_sendpacket.3pcap
684 rm -f $(DESTDIR)$(mandir)/man3/pcap_free_datalinks.3pcap
685 rm -f $(DESTDIR)$(mandir)/man3/pcap_free_tstamp_types.3pcap
686 rm -f $(DESTDIR)$(mandir)/man3/pcap_dispatch.3pcap
687 rm -f $(DESTDIR)$(mandir)/man3/pcap_minor_version.3pcap
688 rm -f $(DESTDIR)$(mandir)/man3/pcap_next.3pcap
689 rm -f $(DESTDIR)$(mandir)/man3/pcap_open_dead_with_tstamp_precision.3pcap
690 rm -f $(DESTDIR)$(mandir)/man3/pcap_open_offline_with_tstamp_precision.3pcap
691 rm -f $(DESTDIR)$(mandir)/man3/pcap_fopen_offline.3pcap
692 rm -f $(DESTDIR)$(mandir)/man3/pcap_fopen_offline_with_tstamp_precision.3pcap
693 rm -f $(DESTDIR)$(mandir)/man3/pcap_getnonblock.3pcap
694 rm -f $(DESTDIR)$(mandir)/man3/pcap_tstamp_type_val_to_description.3pcap
695 for i in $(MANFILE); do \
696 rm -f $(DESTDIR)$(mandir)/man@MAN_FILE_FORMATS@/`echo $$i | sed 's/.manfile.in/.@MAN_FILE_FORMATS@/'`; done
697 for i in $(MANMISC); do \
698 rm -f $(DESTDIR)$(mandir)/man@MAN_MISC_INFO@/`echo $$i | sed 's/.manmisc.in/.@MAN_MISC_INFO@/'`; done
699
700 uninstall-shared: uninstall-shared-$(DYEXT)
701 uninstall-shared-so:
702 VER=`cat $(srcdir)/VERSION`; \
703 MAJOR_VER=`sed 's/\([0-9][0-9]*\)\..*/\1/' $(srcdir)/VERSION`; \
704 rm -f $(DESTDIR)$(libdir)/libpcap.so.$$VER; \
705 rm -f $(DESTDIR)$(libdir)/libpcap.so.$$MAJOR_VER; \
706 rm -f $(DESTDIR)$(libdir)/libpcap.so
707 uninstall-shared-dylib:
708 VER=`cat $(srcdir)/VERSION`; \
709 MAJOR_VER=A; \
710 rm -f $(DESTDIR)$(libdir)/libpcap.$$VER.dylib; \
711 rm -f $(DESTDIR)$(libdir)/libpcap.$$MAJOR_VER.dylib; \
712 rm -f $(DESTDIR)$(libdir)/libpcap.dylib
713 uninstall-shared-sl:
714 MAJOR_VER=`sed 's/\([0-9][0-9]*\)\..*/\1/' $(srcdir)/VERSION`; \
715 rm -f $(DESTDIR)$(libdir)/libpcap.$$MAJOR_VER; \
716 rm -f $(DESTDIR)$(libdir)/libpcap.sl
717 uninstall-shared-shareda:
718 rm -f $(DESTDIR)$(libdir)/libpcap.a
719 uninstall-shared-none:
720
721 clean:
722 rm -f $(CLEANFILES)
723
724 distclean: clean
725 rm -f Makefile config.cache config.log config.status \
726 config.h gnuc.h net os-proto.h bpf_filter.c pcap-config \
727 stamp-h stamp-h.in
728 rm -f $(MAN3PCAP_EXPAND:.in=) $(MANFILE:.in=) $(MANMISC:.in=)
729 rm -rf autom4te.cache
730
731 tags: $(TAGFILES)
732 ctags -wtd $(TAGFILES)
733
734 packaging/pcap.spec: packaging/pcap.spec.in VERSION
735 RPMVERSION=`cat VERSION | sed s/-.*//g`; \
736 sed -e s/@VERSION@/$$RPMVERSION/ -e s/@NAME@/libpcap-`cat VERSION`/ $< > $@
737
738 releasetar:
739 @cwd=`pwd` ; dir=`basename $$cwd` ; name=$(PROG)-`cat VERSION` ; \
740 mkdir $$name; \
741 tar cf - $(CSRC) $(HDR) $(MAN1) $(MAN3PCAP_EXPAND) \
742 $(MAN3PCAP_NOEXPAND) $(MANFILE) $(MANMISC) $(EXTRA_DIST) | \
743 (cd $$name; tar xf -); \
744 tar -c -z -f $$name.tar.gz $$name; \
745 rm -rf $$name
746
747 depend: $(GENSRC) $(GENHDR) bpf_filter.c
748 $(MKDEP) -c $(CC) -m $(CFLAGS) $(DEPENDENCY_CFLAG) $(DEFS) $(INCLS) $(SRC)