mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-24 00:21:07 +01:00
106d839190
Submitted by: Ulrich Spörlein
20 lines
350 B
Makefile
20 lines
350 B
Makefile
# @(#)Makefile 8.3 (Berkeley) 3/27/94
|
|
# $FreeBSD$
|
|
|
|
PROG= mount_cd9660
|
|
SRCS= mount_cd9660.c getmntopts.c
|
|
MAN= mount_cd9660.8
|
|
DPADD= ${LIBKICONV}
|
|
LDADD= -lkiconv
|
|
|
|
MOUNT= ${.CURDIR}/../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>
|