You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
325 B
14 lines
325 B
10 years ago
|
DEPENDENCIES = ../../dependencies
|
||
|
JSR_JAR = $(DEPENDENCIES)/java/jsr-305/jsr305.jar
|
||
|
CLASSES_OUT = classes
|
||
|
SOURCES = `find . -name "*.java"`
|
||
|
|
||
|
all:
|
||
|
mkdir -p classes
|
||
|
javac -cp $(JSR_JAR) $(SOURCES)
|
||
|
jar cvf annotations.jar $(SOURCES) `find . -name "*.class"`
|
||
|
|
||
|
clean:
|
||
|
rm -rvf `find . -name "*.class"`
|
||
|
rm -rvf annotations.jar
|