4857d5d554
. move cache size heuristic from mfs there so mfs and ext2 can share it . add vfs credentials retrieving function, with backwards compatability from previous struct format, to be used by both ext2 and mfs . fix for ext2 - STATICINIT was fed no. of bytes instead of no. of elements, overallocating memory by a megabyte or two for the superblock
16 lines
338 B
Makefile
16 lines
338 B
Makefile
# Makefile for ext2 filesystem
|
|
PROG= ext2
|
|
SRCS= balloc.c cache.c device.c link.c \
|
|
mount.c misc.c open.c protect.c read.c \
|
|
stadir.c table.c time.c utility.c \
|
|
write.c ialloc.c inode.c main.c path.c \
|
|
super.c optset.c
|
|
DPADD+= ${LIBSYS}
|
|
LDADD+= -lminixfs -lsys
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /sbin
|
|
INSTALLFLAGS+= -S 128k
|
|
|
|
.include <minix.service.mk>
|