source: trunk/classes/res/makefile@ 2

Last change on this file since 2 was 2, checked in by stevenhl, 8 years ago

Import sources from cwmm-full.zip dated 2005-03-21

File size: 529 bytes
Line 
1# Makefile
2
3include ../../make.inc
4
5INC = ../include
6CURDIR = .
7
8.PHONY: clean cleaner clean_nlv
9
10all: nlv
11 cd ./common_res && make
12
13nlv:
14 @echo "[35;1;mCreating laguage files.[0;m"
15 @for i in $(LANGUAGES); \
16 do \
17 echo "[33;1;m Creating "$$i"[0;m"; \
18 cd $(CURDIR)/$$i && make LANGUAGE=_$$i && cd .. ; \
19 done
20
21clean_nlv:
22 @for i in $(LANGUAGES); \
23 do \
24 cd $(CURDIR)/$$i && make LANGUAGE=_$$i clean && cd .. ; \
25 done
26
27clean: clean_nlv
28 -cd ./common_res && make clean
29
30cleaner:
31
32
33
Note: See TracBrowser for help on using the repository browser.