
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
12 lines
307 B
Makefile
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>
|