source: trunk/classes/res/makefile@ 150

Last change on this file since 150 was 148, checked in by gyoung, 20 months ago

Automate building of all def files. Some minor code and makefile cleanup

File size: 385 bytes
Line 
1# Makefile
2
3include ../../make.inc
4
5.PHONY: clean cleaner clean_nlv
6
7all: nlv
8 cd common_res && make
9
10nlv:
11 @echo Creating laguage resources
12 @for %i in ( $(LANGUAGES) ) do ( @echo Creating %i language resources && cd %i && make && cd .. )
13
14clean_nlv:
15 @for %i in ($(LANGUAGES)) do (cd %i && make clean && cd ..)
16
17clean: clean_nlv
18 -cd common_res && make clean
Note: See TracBrowser for help on using the repository browser.