blob: 1c29c4dad6cce669b3d0bb769167f1fdac7cf945 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# $FreeBSD$
default:
$(CC) -Wall -fPIC -lifconfig -g -o example_setdescription setdescription.c
$(CC) -Wall -fPIC -lifconfig -g -o example_setmtu setmtu.c
$(CC) -Wall -fPIC -lifconfig -g -o example_ifdestroy ifdestroy.c
$(CC) -Wall -fPIC -lifconfig -g -o example_ifcreate ifcreate.c
$(CC) -Wall -fPIC -lifconfig -g -o example_ifcreatevlan ifcreatevlan.c
$(CC) -Wall -fPIC -lifconfig -g -o example_ifchanagevlan ifchanagevlan.c
$(CC) -Wall -fPIC -lifconfig -g -o example_status status.c
clean:
rm -f example_*
|