opnsense-src/tools/regression/lib/libc/net/Makefile
Julio Merino 0dc2dd5381 Remove broken tests for eui64_line.
This function is not public and brooks (initial committer adding the code)
suggests the deletion of the tests (which I don't know if they work)
instead of changing the visibility of the function.
2014-03-12 10:59:51 +00:00

12 lines
195 B
Makefile

# $FreeBSD$
TESTS= test-ether test-eui64_aton test-eui64_ntoa
CFLAGS+= -g -Wall
.PHONY: tests
tests: ${TESTS}
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
.PHONY: clean
clean:
-rm -f ${TESTS}