blob: 56ede1dd69c60129847f8c2d4b230d6c54c5eaa9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $FreeBSD: src/gnu/lib/libregex/Makefile,v 1.19.2.1 1999/08/29 14:29:03 peter Exp $
LIB= gnuregex
CFLAGS+=-I${.CURDIR} -DHAVE_STRING_H=1 -DSTDC_HEADERS=1 -DNO_POSIX_COMPAT=1
SRCS= regex.c
NOMAN= noman
SUBDIR+= doc
beforeinstall:
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/regex.h \
${DESTDIR}/usr/include/gnuregex.h
.include <bsd.lib.mk>
|