xref: /freebsd/share/examples/libifconfig/Makefile (revision ec21434933d775bd60d0fed62c978fb07fa9ccdf)
1*ec214349SKristof Provost# $FreeBSD$
2*ec214349SKristof Provostdefault:
3*ec214349SKristof Provost	$(CC) -Wall -fPIC -lifconfig -g -o example_setdescription setdescription.c
4*ec214349SKristof Provost	$(CC) -Wall -fPIC -lifconfig -g -o example_setmtu setmtu.c
5*ec214349SKristof Provost	$(CC) -Wall -fPIC -lifconfig -g -o example_ifdestroy ifdestroy.c
6*ec214349SKristof Provost	$(CC) -Wall -fPIC -lifconfig -g -o example_ifcreate ifcreate.c
7*ec214349SKristof Provostclean:
8*ec214349SKristof Provost	rm -f example_*
9