mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 00:40:33 -05:00
libifc (pronounced lib-ifconfig) aims to be a light abstraction layer between programs and the kernel APIs for managing the network configuration. This should hopefully make programs easier to maintain, and reduce code duplication. Work will begin on making ifconfig(8) use this library in the near future. This code is still evolving. The interface should not be considered stable until it is announced as such. Submitted By: Marie Helene Kvello-Aune <marieheleneka@gmail.com> Reviewed By: kp Differential Revision: https://reviews.freebsd.org/D7529
9 lines
292 B
Makefile
9 lines
292 B
Makefile
# $FreeBSD$
|
|
|
|
default:
|
|
$(CC) -Wall -fPIC -lifc -g -o example_setdescription setdescription.c
|
|
$(CC) -Wall -fPIC -lifc -g -o example_setmtu setmtu.c
|
|
$(CC) -Wall -fPIC -lifc -g -o example_ifdestroy ifdestroy.c
|
|
$(CC) -Wall -fPIC -lifc -g -o example_ifcreate ifcreate.c
|
|
clean:
|
|
rm -f example_*
|