source: trunk/classes/res/makefile

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
RevLine 
[2]1# Makefile
2
3include ../../make.inc
4
5.PHONY: clean cleaner clean_nlv
6
[53]7all: nlv
[148]8 cd common_res && make
[2]9
10nlv:
[148]11 @echo Creating laguage resources
12 @for %i in ( $(LANGUAGES) ) do ( @echo Creating %i language resources && cd %i && make && cd .. )
[2]13
14clean_nlv:
[148]15 @for %i in ($(LANGUAGES)) do (cd %i && make clean && cd ..)
16
[2]17clean: clean_nlv
[148]18 -cd common_res && make clean
Note: See TracBrowser for help on using the repository browser.