blob: d3a14964fdb07d4abd87f812bf309bc4eef14f54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# $OpenBSD: Makefile,v 1.12 2005/11/24 20:49:16 deraadt Exp $
# $NetBSD: Makefile,v 1.15 1995/09/07 07:17:53 jtc Exp $
LIB= compat
WANTLINT=
CFLAGS+=-DLIBC_SCCS -DSYSLIBC_SCCS
AINC= -I${.CURDIR}/../libc/arch/${MACHINE_ARCH}
.if defined(DESTDIR)
AINC+= -nostdinc -idirafter ${DESTDIR}/usr/include
.endif
NOPIC= nopic
.PATH: ${.CURDIR}/4.1/${MACHINE_ARCH} ${.CURDIR}/4.1 \
${.CURDIR}/4.3/${MACHINE_ARCH} ${.CURDIR}/4.3 \
${.CURDIR}/4.4/${MACHINE_ARCH} ${.CURDIR}/4.4 \
${.CURDIR}/regexp
# compat 4.1 sources
SRCS= gtty.c ftime.c stty.c
.if (${MACHINE} == "vax")
# missing: (for vax) reset.s
.endif
MAN+= ftime.3 stty.3
MLINKS+=stty.3 gtty.3
# compat 4.3 sources
# missing: sibuf.c sobuf.c strout.c
SRCS+= regex.c rexec.c
SRCS+= setrgid.c setruid.c
MAN+= re_comp.3 rexec.3 setruid.3
MLINKS+=re_comp.3 re_exec.3
MLINKS+=setruid.3 setrgid.3
# compat 4.4 sources
SRCS+= cuserid.c
MAN+= cuserid.3
# regexp sources
SRCS+= regerror.c regexp.c regsub.c
HDRS+= regexp/regexp.h
MAN+= regexp.3
includes:
@cd ${.CURDIR}; for i in $(HDRS); do \
j="cmp -s $$i ${DESTDIR}/usr/include/`basename $$i` || \
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i \
${DESTDIR}/usr/include"; \
echo $$j; \
eval "$$j"; \
done
.include <bsd.lib.mk>
|