mariadb/unittest/Makefile.am
mats@mysql.com 32c697806f WL#3206 (Adding unit tests):
Moving mytap library into unittest/
Adding 'test' target to make and run unit tests.
Minor fixes.
2006-04-06 17:18:12 +02:00

21 lines
270 B
Makefile

SUBDIRS = mytap . mysys examples
.PHONY: mytap mysys examples test
noinst_SCRIPTS = unit
test: mytap mysys examples
./unit run $^
mytap:
cd mytap && $(MAKE)
mysys:
cd mysys && $(MAKE)
examples:
cd examples && $(MAKE)
unit: unit.pl
cp $< $@
chmod +x $@