Add target to build all languages. Stops on Swedish at the moment.

This commit is contained in:
ehouse 2009-01-13 13:19:15 +00:00
parent 4e619601c2
commit 7b8e4e0fd3

View file

@ -37,3 +37,16 @@ clean:
dict2dawg: dict2dawg.cpp dict2dawg: dict2dawg.cpp
$(CXX) $< -o $@ $(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