]> git.saurik.com Git - apple/libc.git/blame_incremental - regex/Makefile.inc
Libc-498.tar.gz
[apple/libc.git] / regex / Makefile.inc
... / ...
CommitLineData
1# from @(#)Makefile.inc 8.1 (Berkeley) 6/4/93
2# $FreeBSD: src/lib/libc/regex/Makefile.inc,v 1.6 2001/03/27 17:26:51 ru Exp $
3
4# regex sources
5.PATH: ${.CURDIR}/regex
6
7.include "Makefile.fbsd_begin"
8FBSDMISRCS= regcomp.c regerror.c regexec.c regfree.c
9CFLAGS-regcomp-fbsd.c+= -DPOSIX_MISTAKE
10FBSDHDRS= cclass.h cname.h engine.c regex2.h utils.h
11.include "Makefile.fbsd_end"
12
13LEGACYSRCS += regcomp.c
14
15# set the LIBC_ALIAS_* macros so we can decorate the symbol independent
16# of other macro settings
17CFLAGS-regcomp-fbsd.c += -DLIBC_ALIAS_REGCOMP
18
19.if ${LIB} == "c"
20.include "Makefile.fbsd_begin"
21FBSDMAN3= regex.3
22FBSDMAN7= re_format.7
23.include "Makefile.fbsd_end"
24
25MLINKS+= regex.3 regcomp.3 \
26 regex.3 regexec.3 \
27 regex.3 regerror.3
28
29MLINKS+= regexec.3 regfree.3
30.endif