CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/exploits/CVE-2013-2465/Makefile
Views: 11779
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