6af9856d4a
remove some old minix-userland-specific stuff . /etc/ttytab as a file, and minix-compat function (fftyslot()), replaced by /etc/ttys and new libc functions . also remove minix-specific nlist(), cuserid(), fttyslot(), v8 regex functions and <compat/regex.h> . and remaining minix-only utilities that use them . also unused <compat/pwd.h> and <compat/syslog.h> and redundant <sys/sigcontext.h>
27 lines
427 B
Makefile
27 lines
427 B
Makefile
.include <bsd.own.mk>
|
|
|
|
LIB= compat_minix
|
|
CPPFLAGS+= -D_MINIX_COMPAT
|
|
MACHINE_ARCH= ${ARCH}
|
|
|
|
.PATH: ${.CURDIR}
|
|
|
|
# std_err()
|
|
SRCS+= stderr.c
|
|
|
|
# Configfile Library.
|
|
SRCS+= configfile.c
|
|
|
|
# Minix 'mtab' handling functions.
|
|
#
|
|
# These should be changed when we switch to
|
|
# NetBSD's 'mtab' format.
|
|
SRCS+= mtab.c
|
|
|
|
.include "include/Makefile.inc"
|
|
|
|
.include <bsd.own.mk>
|
|
SUBDIR+= pkgconfig
|
|
.include <bsd.subdir.mk>
|
|
|
|
.include <bsd.lib.mk>
|