0cedb4ccb931a40d63f16eb4a18764a63c30e1e7
[nit.git] / contrib / friendz / Makefile
1 default: linux
2
3 linux:
4 mkdir -p bin
5 ../../bin/nitc -o bin/friendz src/friendz_linux.nit
6
7 android: res/drawable-hdpi/icon.png
8 mkdir -p bin
9 ../../bin/nitc -o bin/friendz.apk src/friendz_android.nit
10
11 android-release: res/drawable-hdpi/icon.png
12 mkdir -p bin
13 ../../bin/nitc -o bin/friendz.apk src/friendz_android.nit --release
14
15 res/drawable-hdpi/icon.png: art/icon.svg
16 mkdir -p res
17 ../inkscape_tools/bin/svg_to_icons art/icon.svg --android --out res/
18
19 doc:
20 mkdir -p doc
21 ../../bin/nitdoc -d doc/ src/friendz.nit src/friendz_linux.nit
22
23 clean:
24 rm -rf bin/ doc/ res/