--- linuxsampler/trunk/Makefile.am 2003/11/05 14:47:10 9 +++ linuxsampler/trunk/Makefile.am 2005/06/12 23:49:00 643 @@ -1,5 +1,17 @@ # not a GNU package. You can remove this line, if # have all needed files, that a GNU package needs -AUTOMAKE_OPTIONS = foreign 1.4 +AUTOMAKE_OPTIONS = foreign 1.4 dist-bzip2 -SUBDIRS = src +SUBDIRS = man src + +.PHONY: parser testcases + +# generate parser with yacc +parser: + @cd $(srcdir)/src/network && make $@ + +# compile test cases for the LinuxSampler codebase +testcases: + @cd $(srcdir)/src/testcases && make linuxsamplertest + +tests: testcases