d9210c2405
parse quota plists; as well as a getfsquota() function to retrieve quotas for a single id from a single filesystem (whatever filesystem this is: a local quota-enabled fs or NFS). This is build on functions getufsquota() (for local filesystems with UFS-like quotas) and getnfsquota(); which are also available to userland programs. move functions from quota2_subr.c to libquota or libprop as appropriate, and ajust in-tree quota tools. move some declarations from kernel headers to either sys/quota.h or quota/quota.h as appropriate. ufs/ufs/quota.h still installed because it's needed by other installed ufs headers. ufs/ufs/quota1.h still installed as a quick&dirty way to get a code using the old quotactl() to compile (just include ufs/ufs/quota1.h instead of ufs/ufs/quota.h - old code won't compile without this change and this is on purpose). Discussed on tech-kern@ and tech-net@ (long thread, but not much about libquota itself ...)
105 lines
2.9 KiB
Makefile
105 lines
2.9 KiB
Makefile
# $NetBSD: Makefile.libkern,v 1.13 2011/03/24 17:05:44 bouyer Exp $
|
|
|
|
#
|
|
# Variable definitions for libkern.
|
|
#
|
|
# Before including this, you _must_ set
|
|
# KERNDIR: location of sys/lib/libkern
|
|
#
|
|
# You *may* set:
|
|
# LIBKERN_ARCH: architecture subdir to be used
|
|
# KERNCPPFLAGS: see Makefile.inc
|
|
# KERNMISCCPPFLAGS: see Makefile.inc
|
|
#
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if defined(LIBKERN_ARCH) && !empty(LIBKERN_ARCH) && \
|
|
exists(${KERNDIR}/arch/${LIBKERN_ARCH})
|
|
ARCHSUBDIR= ${LIBKERN_ARCH}
|
|
.elif defined(MACHINE_ARCH) && !empty(MACHINE_ARCH) && \
|
|
exists(${KERNDIR}/arch/${MACHINE_ARCH})
|
|
ARCHSUBDIR= ${MACHINE_ARCH}
|
|
.elif defined(MACHINE_CPU) && !empty(MACHINE_CPU) && \
|
|
exists(${KERNDIR}/arch/${MACHINE_CPU})
|
|
ARCHSUBDIR= ${MACHINE_CPU}
|
|
.endif
|
|
|
|
M= ${KERNDIR}/arch/${ARCHSUBDIR}
|
|
|
|
CPPFLAGS+= -I$M ${KERNCPPFLAGS} ${KERNMISCCPPFLAGS}
|
|
|
|
.include "${.PARSEDIR}/../../../common/lib/libc/Makefile.inc"
|
|
.include "${.PARSEDIR}/../../../common/lib/libutil/Makefile.inc"
|
|
.include "${.PARSEDIR}/../../../common/lib/libprop/Makefile.inc"
|
|
.include "${.PARSEDIR}/../../../common/lib/libquota/Makefile.inc"
|
|
|
|
CPPFLAGS+= -I${KERNDIR}/../../../common/include
|
|
|
|
.PATH.c: ${KERNDIR}
|
|
.if exists ($M/Makefile.inc)
|
|
.PATH.c: $M
|
|
.PATH.S: $M
|
|
.include "$M/Makefile.inc"
|
|
.endif
|
|
|
|
.if (${MACHINE_ARCH} != "alpha") && \
|
|
(${MACHINE_ARCH} != "mips64eb" || !empty(CFLAGS:M-mabi=32)) && \
|
|
(${MACHINE_ARCH} != "mips64el" || !empty(CFLAGS:M-mabi=32)) && \
|
|
(${MACHINE_ARCH} != "powerpc64") && \
|
|
(${MACHINE_ARCH} != "sparc64") && \
|
|
(${MACHINE_ARCH} != "x86_64" || !empty(CFLAGS:M-m32))
|
|
# Quad support
|
|
SRCS+= adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
|
|
lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \
|
|
subdi3.c ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
|
|
.endif
|
|
|
|
# Other stuff
|
|
SRCS+= kern_assert.c __main.c
|
|
SRCS+= __cmsg_alignbytes.c cpuset.c inet_addr.c intoa.c
|
|
.if empty(SRCS:Mbyte_swap_8.*)
|
|
SRCS+= bswap64.c
|
|
.endif
|
|
SRCS+= md4c.c md5c.c rmd160.c sha1.c sha2.c
|
|
SRCS+= pmatch.c arc4random.c bcd.c mcount.c mertwist.c crc32.c
|
|
|
|
SRCS+= strsep.c strstr.c
|
|
SRCS+= strlcpy.c strlcat.c
|
|
|
|
SRCS+= imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c
|
|
SRCS+= memcpy.c memmove.c
|
|
SRCS+= strchr.c strrchr.c
|
|
SRCS+= memcmp.c
|
|
.if empty(SRCS:Mmemset2.*)
|
|
SRCS+= memset.c
|
|
.endif
|
|
SRCS+= popcount32.c popcount64.c
|
|
SRCS+= strtoul.c strtoll.c strtoull.c strtoumax.c
|
|
|
|
SRCS+= scanc.c skpc.c
|
|
SRCS+= random.c
|
|
|
|
SRCS+= memchr.c
|
|
SRCS+= strcat.c strcmp.c strcpy.c strlen.c
|
|
SRCS+= strncmp.c strncpy.c
|
|
SRCS+= strcasecmp.c strncasecmp.c
|
|
|
|
SRCS+= xlat_mbr_fstype.c
|
|
|
|
SRCS+= heapsort.c ptree.c rb.c
|
|
|
|
# Files to clean up
|
|
CLEANFILES+= lib${LIB}.o lib${LIB}.po
|
|
|
|
# Remove from SRCS the .c files for any .S files added by the MD makefiles,
|
|
# also remove from SRCS the .c files for the .c files in NO_SRCS.
|
|
# (Unlike libc, we don't worry about lint)
|
|
|
|
.for check_file in ${SRCS:M*.S} ${NO_SRCS}
|
|
unwanted_file := ${SRCS:M${check_file:.S=.c}}
|
|
.if "${unwanted_file}" != ""
|
|
SRCS := ${SRCS:N${unwanted_file}}
|
|
.endif
|
|
.endfor
|