xref: /freebsd/contrib/libpcap/pcap-config.in (revision 7aa383846770374466b1dcb2cefd71bde9acf463)
1#! /bin/sh
2
3#
4# Script to give the appropriate compiler flags and linker flags
5# to use when building code that uses libpcap.
6#
7case "$1" in
8
9--cflags)
10	echo "-I @includedir@"
11	;;
12
13--libs)
14	echo "-L @libdir@ -lpcap @DEPLIBS@"
15	;;
16esac
17