9 lines
181 B
Makefile
9 lines
181 B
Makefile
|
# Makefile for VMware Host/Guest File System (HGFS) server
|
||
|
PROG= hgfs
|
||
|
SRCS= hgfs.c
|
||
|
|
||
|
DPADD+= ${LIBSFFS} ${LIBHGFS} ${LIBSYS}
|
||
|
LDADD+= -lsffs -lhgfs -lsys
|
||
|
|
||
|
.include <minix.service.mk>
|