18 lines
453 B
Makefile
18 lines
453 B
Makefile
# $Header: /home/ncvs/src/gnu/lib/libregex/Makefile,v 1.15 1995/08/06 12:23:01 bde Exp $
|
|
|
|
|
|
LIB= gnuregex
|
|
CFLAGS+=-I${.CURDIR} -I${.CURDIR}/../../../lib/libc/locale \
|
|
-DHAVE_STRING_H=1 -DSTDC_HEADERS=1
|
|
SRCS= regex.c
|
|
NOMAN= noman
|
|
|
|
SUBDIR+= doc
|
|
|
|
beforeinstall:
|
|
cmp -s ${.CURDIR}/regex.h ${DESTDIR}/usr/include/gnuregex.h || \
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \
|
|
${.CURDIR}/regex.h ${DESTDIR}/usr/include/gnuregex.h
|
|
|
|
.include <bsd.lib.mk>
|