8cca4d7795
Reported by severos on IRC, the current output class is in the right place, but the makefile was broken.
15 lines
251 B
Makefile
15 lines
251 B
Makefile
CLASSES = Exploit.java
|
|
|
|
.SUFFIXES: .java .class
|
|
.java.class:
|
|
javac -source 1.2 -target 1.2 -cp "../../../../data/java" Exploit.java
|
|
|
|
all: $(CLASSES:.java=.class)
|
|
|
|
install:
|
|
mv *.class ../../../../data/exploits/CVE-2013-2465/
|
|
|
|
clean:
|
|
rm -rf *.class
|
|
|