TEST=../../../rtest -v

TESTFILES=\
Abs.mo \
Abs1.mo \
Abs2.mo \
AbsIssues.mo \
Acos.mo \
Asin.mo \
Atan.mo \
Atan2.mo \
CatFunc.mo \
Ceil.mo \
ConstantSize.mo \
Cos.mo \
Cosh.mo \
Cross.mo \
Delay.mo \
Delay2.mo \
Delay3.mo \
Delay4.mo \
Delay5.mo \
Delay6.mo \
Delay7.mo \
Delay8.mo \
DerConstant1.mo \
DerConstant2.mo \
DerConstant3.mo \
DiagonalSimplify1.mo \
Div.mo \
EventFunctions.mo \
Exp.mo \
FillSize.mo \
Floor.mo \
Identity1.mo \
Identity2.mo \
Identity3.mo \
Identity4.mo \
Integer.mo \
Integer2Real.mo \
InvalidSizeIndex1.mo \
InvalidSizeIndex2.mo \
InvalidSizeScalar.mo \
Linspace1.mo \
Linspace2.mo \
Log.mo \
Log10.mo \
MathematicalFunctions.mo \
MaxArray.mo \
MinMax.mo \
MinMaxEnum.mo \
Mod.mo \
MultiFunctionReturnValueUseOnlyFirst.mo \
NumericFunctions.mo \
OuterProduct.mo \
Product.mo \
Rem.mo \
Scalar.mo \
ScalarizeMinMax.mo \
Sign.mo \
Sin.mo \
Sinh.mo \
Skew.mo \
Sqrt.mo \
Sum.mo \
SumArray.mo \
SumScalar.mo \
SumVar.mo \
Symmetric.mo \
Symmetric2.mo \
Symmetric3.mo \
Tan.mo \
Tanh.mo \
Transpose.mo \
Transpose2.mo \
Transpose3.mo \
TrigIdentity.mo \
VectorBuiltin.mo \
VectorDimension.mo \
Vectorizable4.mo \
VectorizeUnknownDim.mo \
VectorTest.mo

# test that currently fail. Move up when fixed. 
# Run make testfailing
FAILINGTESTFILES=\

# Dependency files that are not .mo .mos or Makefile
# Add them here or they will be cleaned.
DEPENDENCIES = \
*.mo \
*.mos \
Makefile 

CLEAN = `ls | grep -w -v -f deps.tmp`

DOCFILES=modtest.texi cases.texi VERSION.texi
DISTFILES=$(TESTFILES) VERSION modtest.texi \
	Makefile rtest cases.texi index.html
HTMLFILE=modtest_toc.html

TEXI2DVI=texi2dvi
TEXI2HTML=texi2html -split_chapte
MAKEINFO=makeinfo

VERSION = $(shell cat VERSION)

.PHONY : default
default : modtest.info modtest.ps $(HTMLFILE)

.PHONY : test failingtest clean getdeps
test :
	@echo
	@echo Running tests:
	@echo
	@$(TEST) $(TESTFILES)

# Cleans all files that are not listed as dependencies 
clean :
	@echo $(DEPENDENCIES) | sed 's/ /\\|/g' > deps.tmp
	@rm -f $(CLEAN)

# Run this if you want to list out the files (dependencies).
# do it after cleaning and updating the folder
# then you can get a list of file names (which must be dependencies
# since you got them from repository + your own new files)
# then add them to the DEPENDENCIES. You can find the 
# list in deps.txt 
getdeps: 
	@echo $(DEPENDENCIES) | sed 's/ /\\|/g' > deps.tmp
	@echo $(CLEAN) | sed -r 's/deps.txt|deps.tmp//g' | sed 's/ / \\\n/g' > deps.txt	
	@echo Dependency list saved in deps.txt.
	@echo Copy the list from deps.txt and add it to the Makefile @DEPENDENCIES	
	
failingtest :
	@echo
	@echo Running failing tests:
	@echo
	@$(TEST) $(FAILINGTESTFILES)

keywords :
	$(TEST) -l $(TESTFILES)

modtest.dvi : $(DOCFILES)
	$(TEXI2DVI) $<

modtest.ps : modtest.dvi
	dvips -o $@ $<

modtest.info : $(DOCFILES)
	$(MAKEINFO) $<

$(HTMLFILE) : $(DOCFILES)
	$(TEXI2HTML) $<

cases.texi : $(TESTFILES)
	$(RM) $@
	cases=`$(TEST) -L $(TESTFILES) | sort`; \
	echo "@menu" >> $@; \
	for c in $$cases; do echo "* $$c::" >> $@; done; \
	echo "@end menu" >> $@; \
	set "Test Cases" $$cases ""; \
	while [ "$$2" != "" ] ; do \
		echo ""                 	    >> $@; \
		echo "@node $$2,$$3,$$1,Test Cases" >> $@; \
		echo "@appendixsec $$2" 	    >> $@; \
		echo "@example"         	    >> $@; \
		echo "@include $$2.mo"  	    >> $@; \
		echo "@end example"     	    >> $@; \
		shift ; \
	done

VERSION.texi : VERSION
	sed -e 's/^\(.*\)$$/@set VERSION \1/' < $< > $@

.PHONY : dist
dist : $(DISTFILES)
	mkdir modtest-$(VERSION)
	cp $(DISTFILES) modtest-$(VERSION)
	tar cvf modtest-$(VERSION).tar modtest-$(VERSION)
	gzip -9 modtest-$(VERSION).tar
	$(RM) -r modtest-$(VERSION)
