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
remove extra mkfs.1
[minix.git]
/
test
/
ipc
/
shmt
/
Makefile
blob
6be4763951784dc530fc00c6f57c451fe4e888ca
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
=
shmt02 shmt03 shmt04 shmt05 shmt06 \
7
shmt07 shmt08 shmt10 shmt01
8
9
all
: $(
PROG
)
10
11
$(
PROG
):
..
/
libipc.a
12
$(
CC
) $(
CFLAGS
) -
o
$
@
$
@.c ..
/
libipc.a
13
14
test
:
15
sh testshm.sh
16
17
clean
:
18
rm
-
f
*
.o
$(
PROG
)
19
20
shmt01
:
shmt01.c
21
shmt02
:
shmt02.c
22
shmt03
:
shmt03.c
23
shmt04
:
shmt04.c
24
shmt05
:
shmt05.c
25
shmt06
:
shmt06.c
26
shmt07
:
shmt07.c
27
shmt08
:
shmt08.c
28
shmt10
:
shmt10.c