mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 00:34:33 -05:00
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.
12 lines
195 B
Makefile
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}
|