436d6012a3
-Move libdriver to lib/ -Install all boot image services on filesystem to aid restartability
16 lines
292 B
Makefile
16 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>
|