c78250332d
map_copy_ph_block is replaced by map_clone_ph_block, which can replace a single physical block by multiple physical blocks. also, . merge map_mem.c with region.c, as they manipulate the same data structures . NOTRUNNABLE removed as sanity check . use direct functions for ALLOC_MEM and FREE_MEM again . add some checks to shared memory mapping code . fix for data structure integrity when using shared memory . fix sanity checks
20 lines
404 B
Makefile
20 lines
404 B
Makefile
# Makefile for VM server
|
|
.include <minix.own.mk>
|
|
|
|
PROG= vm
|
|
SRCS= main.c alloc.c utility.c exec.c exit.c fork.c break.c \
|
|
signal.c mmap.c slaballoc.c region.c pagefaults.c addravl.c \
|
|
physravl.c rs.c queryexit.c
|
|
|
|
DPADD+= ${LIBSYS}
|
|
LDADD+= -lsys
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
CPPFLAGS+= -I${.CURDIR} -Iarch/${ARCH}
|
|
CPPFLAGS+= -I${MINIXSRCDIR}
|
|
|
|
.include "arch/${ARCH}/Makefile.inc"
|
|
.include <minix.prog.mk>
|