We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a7c1ed commit 5ed622dCopy full SHA for 5ed622d
.gitignore
@@ -1,2 +1,3 @@
1
2
*.class
3
+docs/*
Makefile
@@ -0,0 +1,27 @@
+JDOC = javadoc
+JFLAGS = -Xlint:deprecation
+JC = javac
4
+DOCTITLE = 'SS Proxy Cache API Specification'
5
+
6
+.PHONY: *.java default clean docs
7
8
+default: *.class
9
10
+%.class: %.java
11
+ $(JC) $(JFLAGS) $<
12
13
+clean:
14
+ $(RM) *.class
15
16
+docs: docs/*
17
18
+docs/*: *.java
19
+ $(JDOC) $^ -d docs \
20
+ -windowtitle $(DOCTITLE) \
21
+ -doctitle $(DOCTITLE)
22
23
+docs-clean:
24
+ $(RM) docs/*
25
26
+run:
27
+ java ProxyCache 8031
0 commit comments