mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 15:24:40 -05:00
Erwin fired up a ports build a couple of weeks ago and it seems the following functions are not used by any of the 20k ports we have, which makes me believe they don't have any purpose. Just remove them.
29 lines
445 B
Makefile
29 lines
445 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
# $FreeBSD$
|
|
|
|
LIB= compat
|
|
CFLAGS+=-DLIBC_SCCS -DSYSLIBC_SCCS -I${.CURDIR}/../libc/locale
|
|
NO_PIC=
|
|
|
|
WARNS?= 0
|
|
|
|
.PATH: ${.CURDIR}/4.1 ${.CURDIR}/4.3 ${.CURDIR}/4.4
|
|
|
|
# compat 4.1 sources
|
|
SRCS+= ftime.c
|
|
|
|
MAN+= 4.1/ftime.3
|
|
|
|
# compat 4.3 sources
|
|
SRCS+= re_comp.c rexec.c
|
|
|
|
MAN+= 4.3/re_comp.3 4.3/rexec.3
|
|
|
|
MLINKS+=re_comp.3 re_exec.3
|
|
|
|
# compat 4.4 sources
|
|
SRCS+= cuserid.c
|
|
|
|
MAN+= 4.4/cuserid.3
|
|
|
|
.include <bsd.lib.mk>
|