From 22a102fb97a065c643c5d0b25c40221b3b8a639c Mon Sep 17 00:00:00 2001 From: "J.T. Conklin" Date: Mon, 2 Aug 1993 16:57:26 +0000 Subject: [PATCH] Remove GNU regex.[ch] and use system's regex library. The library is still GNU regex for now, but will be replaced as soon as an alternative is made availiable. --- bin/expr/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/expr/Makefile b/bin/expr/Makefile index f955f92b0b4f..c2db2b639aad 100644 --- a/bin/expr/Makefile +++ b/bin/expr/Makefile @@ -1,9 +1,10 @@ # /b/source/CVS/src/bin/expr/Makefile,v 1.5 1993/06/14 19:56:06 jtc Exp PROG= expr -SRCS= expr.c regex.c -CFLAGS+= -I${.CURDIR} -DHAVE_STRING_H=1 +SRCS= expr.c CLEANFILES+= expr.c y.tab.h +LDADD+= -lgnuregex +DPADD+= /usr/lib/libgnuregex.a expr.c: ${YACC} -d ${.IMPSRC}