mirror of
https://github.com/opnsense/src.git
synced 2026-04-29 10:11:09 -04:00
Add a skeleton makefile that runs the tests out of libc/regex/grot.
This commit is contained in:
parent
683d338a83
commit
7cc9e6ddbb
1 changed files with 11 additions and 0 deletions
11
tools/regression/lib/libc/regex/Makefile
Normal file
11
tools/regression/lib/libc/regex/Makefile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# $FreeBSD$
|
||||
|
||||
GROT= ../../../../../lib/libc/regex/grot
|
||||
|
||||
.PHONY: tests
|
||||
tests:
|
||||
cd ${GROT}; make && echo "PASS regex"
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
cd ${GROT}; make spotless
|
||||
Loading…
Reference in a new issue