Working Java v.1.0 for arbitrary calls of callback objects
[iot2.git] / benchmarks / Makefile
index f4cbd4c69c601c52ccc9c8981c6a634b7338040a..3f664eda915cff6fd69ce6a8fc7f67780109987e 100644 (file)
@@ -4,7 +4,7 @@ BOOFJARS := $(BOOFDIR)/BoofCV-feature-0.21.jar:$(BOOFDIR)/BoofCV-io-0.21.jar:$(B
 
 include $(BASE)/common.mk
 
-all: interfaces annotation drivers Lifxtest SmartLights Irrigation Speaker
+all: interfaces annotation drivers Lifxtest SmartLights Irrigation Speaker HomeSecurity
 
 PHONY += interfaces
 interfaces:
@@ -16,22 +16,28 @@ annotation:
 
 PHONY += drivers
 drivers:
-       $(MAKE) -C drivers
+       $(MAKE) -C drivers/Java
+       $(MAKE) -C drivers/Cpp
 
 PHONY += Lifxtest
 Lifxtest:
-       $(MAKE) -C Lifxtest
+       $(MAKE) -C Java/Lifxtest
+       #$(MAKE) -C Cpp/Lifxtest
 
 PHONY += SmartLights
 SmartLights:
-       $(MAKE) -C SmartLightsController
+       $(MAKE) -C Java/SmartLightsController
 
 PHONY += Irrigation
 Irrigation:
-       $(MAKE) -C IrrigationController
+       $(MAKE) -C Java/IrrigationController
 
 PHONY += Speaker
 Speaker:
-       $(MAKE) -C SpeakerController
+       $(MAKE) -C Java/SpeakerController
+
+PHONY += HomeSecurity
+HomeSecurity:
+       $(MAKE) -C Java/HomeSecurityController
 
 .PHONY: $(PHONY)