mariadb/unittest/Makefile.am
unknown 17283aa5c3 add a file to EXTRA_DIST. Should fix broken bootstrap.
unittest/Makefile.am:
  add unit.pl to the list of extra files, so that
  "make dist" picks it up.
2006-04-14 13:53:02 +04:00

27 lines
358 B
Makefile

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