Minor fixes in LifxLightBulb driver (not fully tested yet)
[iot2.git] / benchmarks / Makefile
1 BASE := ..
2 BOOFDIR := ./libs/boofcv_libs
3 BOOFJARS := $(BOOFDIR)/BoofCV-feature-0.21.jar:$(BOOFDIR)/BoofCV-io-0.21.jar:$(BOOFDIR)/BoofCV-visualize-0.21.jar:$(BOOFDIR)/BoofCV-ip-0.21.jar
4
5 include $(BASE)/common.mk
6
7 all: interfaces annotation drivers Lifxtest SmartLights Irrigation Speaker HomeSecurity
8
9 PHONY += interfaces
10 interfaces:
11         $(MAKE) -C interfaces
12
13 PHONY += annotation
14 annotation:
15         $(JAVAC) -d $(BIN_DIR) -classpath $(BIN_DIR):. annotation/*java
16
17 PHONY += drivers
18 drivers:
19         $(MAKE) -C drivers/Java
20         $(MAKE) -C drivers/Cpp
21
22 PHONY += Lifxtest
23 Lifxtest:
24         $(MAKE) -C Lifxtest
25
26 PHONY += SmartLights
27 SmartLights:
28         $(MAKE) -C SmartLightsController
29
30 PHONY += Irrigation
31 Irrigation:
32         $(MAKE) -C IrrigationController
33
34 PHONY += Speaker
35 Speaker:
36         $(MAKE) -C SpeakerController
37
38 PHONY += HomeSecurity
39 HomeSecurity:
40         $(MAKE) -C HomeSecurityController
41
42 .PHONY: $(PHONY)