mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-26 02:20:51 +01:00
61a34594b1
Approved by: mux (mentor)
14 lines
260 B
Makefile
14 lines
260 B
Makefile
# $FreeBSD$
|
|
|
|
PROG = mount_reiserfs
|
|
SRCS = mount_reiserfs.c getmntopts.c
|
|
MAN = mount_reiserfs.8
|
|
|
|
# mount_reiserfs needs mntopts.h and getmntopts.c from src/sbin/mount/
|
|
MOUNT ?= ${.CURDIR}/../mount
|
|
CFLAGS += -I${MOUNT}
|
|
|
|
.PATH: ${MOUNT}
|
|
|
|
.include <bsd.prog.mk>
|