ef7b484e5c
This Shared Folders File System library (libsffs) now contains all the file system logic originally in HGFS. The actual HGFS server code is now a stub that passes on all the work to libsffs. The libhgfs library is changed accordingly.
12 lines
203 B
Makefile
12 lines
203 B
Makefile
# Makefile for VMware Host/Guest File System (HGFS) server
|
|
PROG= hgfs
|
|
SRCS= hgfs.c
|
|
|
|
DPADD+= ${LIBSFFS} ${LIBHGFS} ${LIBSYS}
|
|
LDADD+= -lsffs -lhgfs -lsys
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /sbin
|
|
|
|
.include <minix.service.mk>
|