7e9a569cc42a620ed2e44fe310694dd861bf0cf5
[iot2.git] / benchmarks / Java / HomeSecurityController / Makefile
1 BASE = ../../..
2
3 include $(BASE)/common.mk
4
5 BOOFDIR := ../../libs/boofcv_libs
6 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:$(CHECKERJARS)
7
8 JFLAGS = -d $(BIN_DIR) -cp $(BOOFJARS):$(BIN_DIR):$(CHECKERJARS):.
9 JARFLAGS = cf 
10
11 # checker option
12 #
13 CHECKER_OPT = -processor iotchecker.IoTJavaChecker -AprintErrorStack
14
15 ASTUBS = -Astubs=../../../checker/astubs/ 
16
17 all: homesecurity
18
19 check-all: check-homesecurity
20
21 PHONY += homesecurity
22 homesecurity:
23         $(JAVAC) $(JFLAGS) *.java
24         cp HomeSecurityController.config $(BIN_DIR)/HomeSecurityController
25         cd $(BIN_DIR)/HomeSecurityController; $(JAR) $(JARFLAGS) HomeSecurityController.jar ../HomeSecurityController/HomeSecurityController*.class ../HomeSecurityController/*.class ../iotcode/interfaces/SmartthingsSensor*.class ../iotcode/interfaces/SmartthingsActuator*.class ../iotcode/interfaces/Camera*.class ../iotcode/interfaces/Alarm*.class ../iotcode/interfaces/Room*.class  ../iotcode/interfaces/ZoneState*.class ../iotcode/interfaces/Resolution*.class
26
27 PHONY += check-homesecurity
28 check-homesecurity:
29         $(JAVAC) $(JFLAGS) $(CHECKER_OPT) $(ASTUBS) *.java
30         cp HomeSecurityController.config $(BIN_DIR)/HomeSecurityController
31         cd $(BIN_DIR)/HomeSecurityController; $(JAR) $(JARFLAGS) HomeSecurityController.jar ../HomeSecurityController/HomeSecurityController*.class ../HomeSecurityController/*.class ../iotcode/interfaces/SmartthingsSensor*.class ../iotcode/interfaces/SmartthingsActuator*.class ../iotcode/interfaces/Camera*.class ../iotcode/interfaces/Alarm*.class ../iotcode/interfaces/Room*.class  ../iotcode/interfaces/ZoneState*.class ../iotcode/interfaces/Resolution*.class
32
33 .PHONY: $(PHONY)