Add a skeleton makefile that runs the tests out of libc/regex/grot.

This commit is contained in:
Tim J. Robbins 2004-07-19 09:00:26 +00:00
parent 683d338a83
commit 7cc9e6ddbb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=132392

View 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