Makefile
823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#
# Makefile for vi test directories
#
PRDEPTH=../../../../
include $(PRDEPTH)/PRdefs
SUBDIRS= vi_divot vi_gamma vi_lerp vi_filter vi_pipe vi_rand
default : $(_FORCE)
$(SUBDIRS_MAKERULE)
rtests: $(_FORCE)
(cd vi_divot; make rtests)
(cd vi_gamma; make rtests)
(cd vi_lerp; make rtests)
(cd vi_filter; make rtests)
(cd vi_pipe; make rtests)
(cd vi_rand; make rtests)
stests: $(_FORCE)
(cd vi_divot; make stests)
(cd vi_gamma; make stests)
(cd vi_lerp; make stests)
(cd vi_filter; make stests)
(cd vi_pipe; make stests)
(cd vi_rand; make stests)
otests: $(_FORCE)
(cd vi_divot; make otests)
(cd vi_gamma; make otests)
(cd vi_lerp; make otests)
(cd vi_filter; make otests)
(cd vi_pipe; make otests)
(cd vi_rand; make otests)
$(COMMONTARGS): $(_FORCE)
$(SUBDIRS_MAKERULE)
include $(COMMONRULES) nuke