msgpack/java/Makefile

25 lines
271 B
Makefile
Raw Normal View History

2010-04-19 22:39:53 +09:00
2010-04-19 23:34:18 +09:00
.PHONY: compile test eclipse clean package
2010-04-19 22:39:53 +09:00
2010-04-19 23:34:18 +09:00
all:
compile
package:
mvn package
install:
mvn install
2010-04-19 22:39:53 +09:00
compile:
mvn compile
test:
mvn test
# generate .project and .classpath file for Eclipse
eclipse:
mvn eclipse:eclipse
clean:
mvn clean