diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2006-06-20 08:44:27 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2006-06-20 08:44:27 +0000 |
commit | 2d5898653778cc0115b219a5ded7b6b98fa7a373 (patch) | |
tree | e5e67e0f1012742bd576ba30b4ac81225499c6f8 /src/Makefile | |
parent | 6bcef5ed8a5d6baaf48c165d5873f58b05479eb2 (diff) |
added a BUGS.txt file; added unit-test for [s2l]; added Makefile for unit tests; added "tests" target to the src/Makefile which calls the unit-tests
svn path=/trunk/externals/zexy/; revision=5266
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 9658158..0af231b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2,7 +2,11 @@ default: all .PHONEY: default all everything dist \ clean realclean distclean \ - install install-bin install-doc install-abs + install install-bin install-doc install-abs \ + tests + + +TESTDIR=../tests HELPERSOURCES=z_zexy.c zexy.c winNT_portio.c @@ -86,6 +90,9 @@ distclean: realclean zexy.opt zexy.plg -rm -rf autom4te.cache/ +tests: all + make -C $(TESTDIR) + install: install-bin install-doc install-abs install-bin: |