minix/servers/hgfs/Makefile.inc
Arun Thomas 436d6012a3 Convert drivers/ and servers/ over to bsdmake
-Move libdriver to lib/
-Install all boot image services on filesystem to aid restartability
2010-03-22 21:25:22 +00:00

14 lines
294 B
Makefile

.include <minix.own.mk>
LIBHGFS != cd ${.CURDIR}/../libhgfs && ${PRINTOBJDIR}
CPPFLAGS+=-I${.CURDIR}/../libhgfs
DPADD+= ${LIBHGFS}/libhgfs.a
LDADD+= -L${LIBHGFS} -lhgfs
DPADD+= ${LIBSYS}
LDADD+= -lsys
.if exists(${.CURDIR}/../../Makefile.inc)
.include "${.CURDIR}/../../Makefile.inc"
.endif