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 |
|
---|
3 | include ../../make.inc
|
---|
4 |
|
---|
5 | INC = ../include
|
---|
6 | CURDIR = .
|
---|
7 |
|
---|
8 | .PHONY: clean cleaner clean_nlv
|
---|
9 |
|
---|
10 | all: nlv
|
---|
11 | cd ./common_res && make
|
---|
12 |
|
---|
13 | nlv:
|
---|
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 |
|
---|
21 | clean_nlv:
|
---|
22 | @for i in $(LANGUAGES); \
|
---|
23 | do \
|
---|
24 | cd $(CURDIR)/$$i && make LANGUAGE=_$$i clean && cd .. ; \
|
---|
25 | done
|
---|
26 |
|
---|
27 | clean: clean_nlv
|
---|
28 | -cd ./common_res && make clean
|
---|
29 |
|
---|
30 | cleaner:
|
---|
31 |
|
---|
32 |
|
---|
33 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.