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