repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
64-bit VFS_LSEEK_OFF
[minix3.git]
/
test
/
ipc
/
shmat
/
Makefile
blob
fe01d33cca4e53fe5fe43b3de8747eba7c0b3165
1
# Makefile for the tests
2
3
CC
=
exec
cc
4
CFLAGS
= -
Wall
-
I..
/
lib
/
5
6
PROG
=
shmat01 shmat02 shmat03
7
8
all
: $(
PROG
)
9
10
$(
PROG
):
..
/
libipc.a
11
$(
CC
) $(
CFLAGS
) -
o
$
@
$
@.c ..
/
libipc.a
12
13
clean
:
14
rm
-
f
*
.o
$(
PROG
)
15
16
test
:
17
sh .
/
test
.sh
18
19
shmat01
:
shmat01.c
20
shmat02
:
shmat02.c
21
shmat03
:
shmat03.c