phunix/minix/fs/isofs/Makefile
David van Moolenbroek af4345b097 isofs: do not link against libc
This change requires a small patch to libc, in order to avoid that
libminc has to pull in a large chunk of libc just for mktime(3).

Change-Id: I48e598b3716eff626cac461f78a41e32334e6b28
2015-06-07 17:01:45 +00:00

12 lines
307 B
Makefile

# Makefile for ISO9660 fs
PROG= isofs
SRCS= main.c table.c mount.c super.c inode.c \
link.c utility.c path.c read.c susp.c susp_rock_ridge.c stadir.c
DPADD+= ${LIBFSDRIVER} ${LIBBDEV} ${LIBSYS} ${LIBMINIXFS}
LDADD+= -lfsdriver -lbdev -lsys -lminixfs
CPPFLAGS+= -DNR_BUFS=100
.include <minix.service.mk>