.gitignore: Remove .depend again.
[dragonfly.git] / sbin / mount_tmpfs / Makefile
1 #
2 # $DragonFly: src/sbin/mount_hammer/Makefile,v 1.1 2007/10/10 19:35:19 dillon Exp $
3
4 PROG=   mount_tmpfs
5 SRCS=   mount_tmpfs.c fscopy.c getmntopts.c
6 MAN=    mount_tmpfs.8
7 LDADD+= -lutil
8
9 MOUNT=  ${.CURDIR}/../mount
10 CFLAGS+=-I${.CURDIR}/../../sys -I${MOUNT}
11 .PATH:  ${MOUNT}
12
13 NEWFS=  ${.CURDIR}/../newfs
14 CFLAGS+=-I${NEWFS}
15 .PATH:  ${NEWFS}
16
17 .include <bsd.prog.mk>