mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 14:17:06 -04:00
13 lines
217 B
Makefile
13 lines
217 B
Makefile
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
TESTS= test-getaddr test-getgr test-gethostby test-getpw test-getproto\
|
||
|
|
test-getrpc test-getserv test-getusershell
|
||
|
|
CFLAGS+= -g -Wall
|
||
|
|
|
||
|
|
.PHONY: tests
|
||
|
|
tests: ${TESTS}
|
||
|
|
|
||
|
|
.PHONY: clean
|
||
|
|
clean:
|
||
|
|
-rm -f ${TESTS}
|