e5074fa18e
this library. Sticking to 'libifconfig' (and 'ifconfig_' as function prefix) should reduce chances of namespace collisions, make it more clear what the library does, and be more in line with existing libraries. Submitted by: Marie Helene Kvello-Aune <marieheleneka@gmail.com> Differential Revision: https://reviews.freebsd.org/D7742 Reviewed by: cem, kp
9 lines
311 B
Makefile
9 lines
311 B
Makefile
# $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
|
|
clean:
|
|
rm -f example_*
|