minix/minix/fs/mfs/Makefile
Lionel Sambuc 50a1aef12b Move all services to /service
This concerns all services, a.k.a drivers, filesystem drivers, network
(inet, lwip, uds) servers, and the system servers.

Change-Id: I626fd15c795e15af42df2d10d47fb4a703665d63
2014-07-31 16:00:31 +02:00

14 lines
337 B
Makefile

# Makefile for Minix File System (MFS)
PROG= mfs
SRCS= cache.c link.c \
mount.c misc.c open.c protect.c read.c \
stadir.c stats.c table.c time.c utility.c \
write.c inode.c main.c path.c super.c
DPADD+= ${LIBMINIXFS} ${LIBBDEV} ${LIBSYS}
LDADD+= -lminixfs -lbdev -lsys
CPPFLAGS+= -DDEFAULT_NR_BUFS=1024
.include <minix.service.mk>