mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-21 18:50:50 +01:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
17 lines
293 B
Makefile
17 lines
293 B
Makefile
PACKAGE=runtime
|
|
PROG= mount_cd9660
|
|
SRCS= mount_cd9660.c getmntopts.c
|
|
MAN= mount_cd9660.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>
|