mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-21 18:50:50 +01:00
d0b2dbfa0e
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
20 lines
301 B
Makefile
20 lines
301 B
Makefile
#
|
|
#
|
|
|
|
PACKAGE=runtime
|
|
PROG= mount_msdosfs
|
|
SRCS= mount_msdosfs.c getmntopts.c
|
|
MAN= mount_msdosfs.8
|
|
LIBADD= kiconv
|
|
|
|
MOUNT= ${.CURDIR:H}/mount
|
|
CFLAGS+= -I${MOUNT}
|
|
|
|
# Needs to be dynamically linked for optional dlopen() access to
|
|
# userland libiconv
|
|
NO_SHARED?= NO
|
|
|
|
.PATH: ${MOUNT}
|
|
|
|
.include <bsd.prog.mk>
|