minix/servers/iso9660fs/Makefile
Arun Thomas 436d6012a3 Convert drivers/ and servers/ over to bsdmake
-Move libdriver to lib/
-Install all boot image services on filesystem to aid restartability
2010-03-22 21:25:22 +00:00

17 lines
292 B
Makefile

# Makefile for ISO9660 fs
PROG= isofs
SRCS= main.c table.c mount.c super.c inode.c device.c \
utility.c misc.c path.c read.c stadir.c cache.c
DPADD+= ${LIBSYS} ${LIBTIMERS}
LDADD+= -lsys -ltimers
MAN=
BINDIR?= /sbin
NR_BUFS= 100
CPPFLAGS+= -DNR_BUFS=${NR_BUFS}
.include <minix.prog.mk>