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
vm: fix region reporting bug
[minix.git]
/
test
/
ipc
/
semop
/
Makefile
blob
88daa7fbfc2105f93ce22279dd26d36836cb9b32
1
# Makefile for the tests
2
3
CC
=
exec
cc
4
CFLAGS
= -
Wall
-
D_MINIX
-
D_POSIX_SOURCE
-
D_NETBSD_SOURCE
=
1
-
I..
/
lib
/
5
6
PROG
=
semop01 semop02 semop03 semop04 semop05
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
semop01
:
semop01.c
20
semop02
:
semop02.c
21
semop03
:
semop03.c
22
semop04
:
semop04.c
23
semop05
:
semop05.c
24