diff options
author | tjr <tjr@FreeBSD.org> | 2004-07-19 09:00:26 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2004-07-19 09:00:26 +0000 |
commit | d3949c6f0800a68204203966b24bf351ea03934a (patch) | |
tree | eeaded36318b46e926c7e618fe22dbe9949b993c /tools | |
parent | c977042a24eb71485fff8fbc432f13571c488c69 (diff) | |
download | FreeBSD-src-d3949c6f0800a68204203966b24bf351ea03934a.zip FreeBSD-src-d3949c6f0800a68204203966b24bf351ea03934a.tar.gz |
Add a skeleton makefile that runs the tests out of libc/regex/grot.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/regression/lib/libc/regex/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/regression/lib/libc/regex/Makefile b/tools/regression/lib/libc/regex/Makefile new file mode 100644 index 0000000..f91bef2 --- /dev/null +++ b/tools/regression/lib/libc/regex/Makefile @@ -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 |