-
Notifications
You must be signed in to change notification settings - Fork 14
/
Makefile
50 lines (35 loc) · 946 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#
# Placeholder makefile so "debuild" can be gently persuaded to work
#
REPO:= kano-toolset
.PHONY: clean docs kano-keys-pressed kano-launcher kano-logging kano kano-networking kano-python parson check test
all: kano-keys-pressed kano-launcher kano kano-networking kano-python parson
clean:
cd docs && make clean
docs:
cd docs && make all
kano-keys-pressed:
cd kano-keys-pressed && make
kano-launcher: kano-c-logging
cd kano-launcher && make
kano-c-logging:
cd libs/kano-c-logging && make
cd libs/kano-c-logging && make debug
kano: kano-python
cd libs/kano && LOCAL_BUILD=1 make
cd libs/kano && LOCAL_BUILD=1 make debug
kano-networking:
cd libs/kano-networking && make
cd libs/kano-networking && make debug
kano-python:
cd libs/kano-python && make
cd libs/kano-python && make debug
parson:
cd libs/parson && make
cd libs/parson && make debug
#
# Add test targets
#
include pythontest.mk
check: pythontest
test: check