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 ""
11	;;
12
13--libs)
14	echo "-lpcap "
15	;;
16esac
17