minix/servers/ext2/Makefile
Thomas Veerman 6c597561bc EXT2: various fixes
.enable all compile time warnings and make them errors
.refactor functions with unused parameters
.fix null pointer dereference before checking for null
.proper variable initialization
.use safe string copy functions
.fix massive memory corruption bug in fs_getdents
2012-07-30 09:44:58 +00:00

17 lines
360 B
Makefile

# Makefile for ext2 filesystem
PROG= ext2
SRCS= balloc.c cache.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
DPADD+= ${LIBMINIXFS} ${LIBBDEV} ${LIBSYS}
LDADD+= -lminixfs -lbdev -lsys
MAN=
BINDIR?= /sbin
CFLAGS+= -Wall -Wextra -Werror
.include <minix.service.mk>