436d6012a3
-Move libdriver to lib/ -Install all boot image services on filesystem to aid restartability
13 lines
294 B
Makefile
13 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
|