mirror of
https://github.com/opnsense/src.git
synced 2026-02-16 00:58:21 -05:00
12 lines
200 B
Makefile
12 lines
200 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}
|