diff options
author | ru <ru@FreeBSD.org> | 2004-09-19 12:15:25 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-09-19 12:15:25 +0000 |
commit | 3233cdbf501dcafccda435cc9c5204e4347374ed (patch) | |
tree | 395540df803179ba17a6082b48cded7cc02bf102 /gnu/lib | |
parent | 2a220bb5b025dd9f7252cd8f631d7e39a1dc2984 (diff) | |
download | FreeBSD-src-3233cdbf501dcafccda435cc9c5204e4347374ed.zip FreeBSD-src-3233cdbf501dcafccda435cc9c5204e4347374ed.tar.gz |
Style.
Diffstat (limited to 'gnu/lib')
-rw-r--r-- | gnu/lib/libregex/Makefile | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/gnu/lib/libregex/Makefile b/gnu/lib/libregex/Makefile index 32ad7db..6525bff 100644 --- a/gnu/lib/libregex/Makefile +++ b/gnu/lib/libregex/Makefile @@ -1,23 +1,22 @@ # $FreeBSD$ -SUBDIR+= doc +SUBDIR= doc LIB= gnuregex SHLIB_MAJOR= 2 -SRCS= gnuregex.c +SRCS= gnuregex.c INCSGROUPS= INCS WRINCS PXINCS -INCS= regex.h.patched -CLEANFILES+= regex.h.patched gnuregex.c +INCS= regex.h.patched INCSNAME= regex.h INCSDIR= ${INCLUDEDIR}/gnu -WRINCS= gnuregex.h -PXINCS= posix/regex.h -PXINCSDIR= ${INCLUDEDIR}/gnu/posix -NOMAN= noman +WRINCS= gnuregex.h +PXINCS= posix/regex.h +PXINCSDIR= ${INCSDIR}/posix CFLAGS+=-D_REGEX_RE_COMP -DSTDC_HEADERS +CLEANFILES= regex.h.patched gnuregex.c regex.h.patched: regex.h sed 's=<posix/regex\.h>=<gnu/posix/regex.h>=g' \ < ${.ALLSRC} > ${.TARGET} |