2dfc0943e5902664545ac4d9cd986fbc98d06fbf
[nit.git] / lib / app / examples / Makefile
1 all: http_request_example ui_example
2
3 android: http_request_example.apk ui_example.apk
4
5 ios: http_request_example.app ui_example.app
6
7 http_request_example: $(shell nitls -M http_request_example.nit linux)
8 nitc http_request_example.nit -m linux
9
10 http_request_example.apk: $(shell nitls -M http_request_example.nit android)
11 nitc http_request_example.nit -m android
12
13 http_request_example.app: $(shell nitls -M http_request_example.nit ios)
14 nitc http_request_example.nit -m ios
15
16 ui_example: $(shell nitls -M ui_example.nit linux)
17 nitc ui_example.nit -m linux
18
19 ui_example.apk: $(shell nitls -M ui_example.nit android)
20 nitc ui_example.nit -m android
21
22 ui_example.app: $(shell nitls -M ui_example.nit ios)
23 nitc ui_example.nit -m ios
24
25 clean:
26 rm -rf http_request_example http_request_example.apk http_request_example.app ui_example ui_example.apk ui_example.app