1c614e098d
o WARNS should be WARNS?= (broke in rev 1.21). o Includes should be sorted. o Move "mntopt.h" out of the standard includes section. o Rewrite usage() to match the manual page and make it < 80 characters. o Remove extra .El call on line 187. It is unused and causes mdoc(7) warnings. Discussed with: bde
22 lines
328 B
Makefile
22 lines
328 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PROG= mount_msdosfs
|
|
SRCS= mount_msdosfs.c getmntopts.c
|
|
MAN= mount_msdosfs.8
|
|
DPADD= ${LIBKICONV}
|
|
LDADD= -lkiconv
|
|
|
|
MOUNT= ${.CURDIR}/../mount
|
|
CFLAGS+= -I${MOUNT}
|
|
WARNS?= 2
|
|
|
|
# Needs to be dynamically linked for optional dlopen() access to
|
|
# userland libiconv
|
|
NOSHARED?= NO
|
|
|
|
.PATH: ${MOUNT}
|
|
|
|
.include <bsd.prog.mk>
|