GNUmakefile 832 Bytes
#
# Makefile for vi test directories
#

PRDEPTH=../../../../
include $(PRDEPTH)/PRdefs

COMMONPREF=vi
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)