summaryrefslogtreecommitdiff
path: root/minix/tests/safecopy/Makefile
blob: 477c05895750b7e42ad21510b4cec093c17c58fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
all: requestor grantor 1fifo 2fifo
	chmod +x down run

requestor: requestor.c inc.h
	cc -static -o $@ $< -lsys 

grantor: grantor.c inc.h
	cc -static -o $@ $< -lsys

1fifo 2fifo:
	mkfifo $@

run: all
	sh run

kill:
	sh down

clean:
	rm -f grantor requestor 1fifo 2fifo