mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
Detailed description and instructions are in the README file. This work had been basically done during GSoC 2006. Approved by: brooks (mentor)
12 lines
217 B
Makefile
12 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}
|