blob: 29069b49fd4bfde78d949055bb58de5e2e076e6a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $Header: /home/ncvs/src/gnu/lib/libregex/Makefile,v 1.14.4.2 1996/06/05 02:38:54 jkh Exp $
LIB= gnuregex
CFLAGS+=-I${.CURDIR} -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>
|