From 7cc9e6ddbb1a6cd38b2f44d4dd9dfc890d2fc9d0 Mon Sep 17 00:00:00 2001 From: "Tim J. Robbins" Date: Mon, 19 Jul 2004 09:00:26 +0000 Subject: [PATCH] Add a skeleton makefile that runs the tests out of libc/regex/grot. --- tools/regression/lib/libc/regex/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tools/regression/lib/libc/regex/Makefile diff --git a/tools/regression/lib/libc/regex/Makefile b/tools/regression/lib/libc/regex/Makefile new file mode 100644 index 00000000000..f91bef24ffe --- /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