b48b037fbe
servers/hgfs/hgfs_server => servers/hgfs servers/hgfs/libhgfs => lib/libhgfs servers/rs/service => commands/service drivers/memory/memory_driver => drivers/memory drivers/memory/ramdisk => drivers/ramdisk
18 lines
320 B
Makefile
18 lines
320 B
Makefile
# Makefile for memory driver (MEMORY)
|
|
.include <minix.own.mk>
|
|
|
|
PROG= memory
|
|
SRCS= memory.c imgrd.c
|
|
|
|
DPADD+= ${LIBDRIVER} ${LIBSYS}
|
|
LDADD+= -ldriver -lsys
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
INSTALLFLAGS+= -S 8k
|
|
|
|
CPPFLAGS.memory.c+= -I${MINIXSRCDIR}
|
|
CPPFLAGS.imgrd.c+= -I${.CURDIR}/../ramdisk -T /usr/tmp
|
|
|
|
.include <minix.prog.mk>
|