--- linuxsampler/trunk/Makefile.am 2003/11/05 14:47:10 9 +++ linuxsampler/trunk/Makefile.am 2004/07/25 23:27:41 211 @@ -3,3 +3,15 @@ AUTOMAKE_OPTIONS = foreign 1.4 SUBDIRS = src + +.PHONY: parser testcases + +# generate parser with lex and yacc +parser: + @cd $(srcdir)/src/network && make $@ + +# compile test cases for the LinuxSampler codebase +testcases: + @cd $(srcdir)/src/testcases && make linuxsamplertest + +tests: testcases