зеркало из https://github.com/mozilla/scribe.git
17 строки
338 B
Makefile
17 строки
338 B
Makefile
TESTDIRS = filecontent filename concat raw import-chain tags
|
|
|
|
all:
|
|
|
|
runtests:
|
|
ifndef SCRIBECMD
|
|
$(error SCRIBECMD is undefined, tests must be ran from the root of the repository)
|
|
endif
|
|
for x in $(TESTDIRS); do \
|
|
$(MAKE) -C $$x runtests || exit 1; \
|
|
done \
|
|
|
|
clean:
|
|
for x in $(TESTDIRS); do \
|
|
$(MAKE) -C $$x clean || exit 1; \
|
|
done
|