9af491e24b
Four tests currently fail: test_ether_line_bad_1() and test_ether_line_bad_2() due to bugs in ether_line(3). test_ether_ntohost() and test_ether_hostton() due to not being fully implemented tests.
13 lines
211 B
Makefile
13 lines
211 B
Makefile
# $FreeBSD$
|
|
|
|
TESTS= test-ether test-eui64_aton test-eui64_line test-eui64_ntoa
|
|
CFLAGS+= -g -Wall
|
|
|
|
.PHONY: tests
|
|
tests: ${TESTS}
|
|
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
-rm -f ${TESTS}
|