mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
17283aa5c3
unittest/Makefile.am: add unit.pl to the list of extra files, so that "make dist" picks it up.
27 lines
358 B
Makefile
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 $@
|