mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
10 lines
505 B
Makefile
10 lines
505 B
Makefile
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_*
|