7387768ef4
modeled on ethers(3) except that all functions are thread-safe. Reviewed by: simokawa
13 lines
199 B
Makefile
13 lines
199 B
Makefile
# $FreeBSD$
|
|
|
|
TESTS= 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}
|