mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-14 08:01:38 +01:00
Add target to build all languages. Stops on Swedish at the moment.
This commit is contained in:
parent
dd81444a45
commit
2691b00dc9
1 changed files with 13 additions and 0 deletions
|
@ -37,3 +37,16 @@ clean:
|
|||
|
||||
dict2dawg: dict2dawg.cpp
|
||||
$(CXX) $< -o $@
|
||||
|
||||
PHONY: test
|
||||
|
||||
test:
|
||||
for f in $$(ls); do \
|
||||
test -d $$f || continue; \
|
||||
test -e $$f/Makefile || continue; \
|
||||
(cd $$f && make clean && make); \
|
||||
done \
|
||||
|
||||
help:
|
||||
@echo make \# makes byod tarball
|
||||
@echo make test \# builds dicts in a bunch of subdirectories
|
||||
|
|
Loading…
Reference in a new issue