metasploit-framework/external/source/exploits/cve-2012-5076/Makefile

19 lines
370 B
Makefile
Raw Normal View History

2012-11-11 16:43:57 +00:00
# rt.jar must be in the classpath!
CLASSES = \
Exploit.java \
MyPayload.java
.SUFFIXES: .java .class
.java.class:
2012-11-11 16:44:27 +00:00
javac -source 1.2 -target 1.2 -cp "../../../../data/java" $*.java
2012-11-11 16:43:57 +00:00
all: $(CLASSES:.java=.class)
install:
mv Exploit.class ../../../../data/exploits/cve-2012-5076/
mv MyPayload.class ../../../../data/exploits/cve-2012-5076/
clean:
rm -rf *.class