Last change
on this file was 148, checked in by gyoung, 19 months ago |
Automate building of all def files. Some minor code and makefile cleanup
|
File size:
385 bytes
|
Line | |
---|
1 | # Makefile
|
---|
2 |
|
---|
3 | include ../../make.inc
|
---|
4 |
|
---|
5 | .PHONY: clean cleaner clean_nlv
|
---|
6 |
|
---|
7 | all: nlv
|
---|
8 | cd common_res && make
|
---|
9 |
|
---|
10 | nlv:
|
---|
11 | @echo Creating laguage resources
|
---|
12 | @for %i in ( $(LANGUAGES) ) do ( @echo Creating %i language resources && cd %i && make && cd .. )
|
---|
13 |
|
---|
14 | clean_nlv:
|
---|
15 | @for %i in ($(LANGUAGES)) do (cd %i && make clean && cd ..)
|
---|
16 |
|
---|
17 | clean: clean_nlv
|
---|
18 | -cd common_res && make clean
|
---|
Note:
See
TracBrowser
for help on using the repository browser.