22289a8c3d
This simplifies make logic/output MFC after: 1 month Sponsored by: Dell EMC Isilon
18 lines
312 B
Makefile
18 lines
312 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE=runtime
|
|
PROG= mount_udf
|
|
SRCS= mount_udf.c getmntopts.c
|
|
MAN= mount_udf.8
|
|
LIBADD= kiconv
|
|
|
|
MOUNT= ${.CURDIR:H}/mount
|
|
CFLAGS+= -I${MOUNT} -I${SRCTOP}/sys
|
|
.PATH: ${MOUNT}
|
|
|
|
# Needs to be dynamically linked for optional dlopen() access to
|
|
# userland libiconv
|
|
NO_SHARED?= NO
|
|
|
|
.include <bsd.prog.mk>
|