mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-19 13:02:13 +01:00
25 lines
271 B
Makefile
Executable File
25 lines
271 B
Makefile
Executable File
|
|
.PHONY: compile test eclipse clean package
|
|
|
|
all:
|
|
compile
|
|
|
|
package:
|
|
mvn package
|
|
|
|
install:
|
|
mvn install
|
|
|
|
compile:
|
|
mvn compile
|
|
|
|
test:
|
|
mvn test
|
|
|
|
# generate .project and .classpath file for Eclipse
|
|
eclipse:
|
|
mvn eclipse:eclipse
|
|
|
|
clean:
|
|
mvn clean
|