debb6d80a3
* make static all symbols which do not need to be exported * rename main() to mount_FOO() * new main() now just calls mount_FOO(), main() is only compiled in if MOUNT_NOMAIN is not defined * a_gid(), a_uid() and a_mask() were put into ../mount/fattr.[ch], local versions removed
14 lines
266 B
Makefile
14 lines
266 B
Makefile
# $NetBSD: Makefile,v 1.3 2000/10/30 20:56:59 jdolecek Exp $
|
|
#
|
|
# Makefile 1.0 1998/6/26
|
|
|
|
PROG= mount_filecore
|
|
SRCS= mount_filecore.c getmntopts.c fattr.c
|
|
MAN= mount_filecore.8
|
|
|
|
MOUNT= ${.CURDIR}/../mount
|
|
CPPFLAGS+= -I${MOUNT}
|
|
.PATH: ${MOUNT}
|
|
|
|
.include <bsd.prog.mk>
|