Updating database
[iot2.git] / checker / Makefile
1 BASE := ..
2
3 include $(BASE)/common.mk
4
5 all: checker
6
7 PHONY += checker
8
9 checker:
10         $(JAVAC) -d  $(BASE)/bin -classpath .:$(BASE)/bin:$(CHECKERJARS) iotchecker/*.java
11         cp iotchecker/messages.properties $(BASE)/bin/iotchecker
12
13 .PHONY: $(PHONY)