repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
3.1.7 branch.
[minix.git]
/
drivers
/
memory
/
Makefile
blob
bf776f900d2b804793948ef532a8f62abfcbacf7
1
# Makefile for memory driver (MEMORY)
2
.
include
<
minix.own.mk
>
3
4
PROG
=
memory
5
SRCS
=
memory.c imgrd.c
6
7
DPADD
+= ${
LIBDRIVER
} ${
LIBSYS
}
8
LDADD
+= -
ldriver
-
lsys
9
10
MAN
=
11
12
BINDIR?
= /
usr
/
sbin
13
INSTALLFLAGS
+= -
S
8
k
14
15
CPPFLAGS.memory.c
+= -
I
${
MINIXSRCDIR
}
16
CPPFLAGS.imgrd.c
+= -
I
${
.CURDIR
}/
..
/
ramdisk
-
T
/
usr
/
tmp
17
18
.
include
<
minix.prog.mk
>