HTML page referencing jar archive now, Makefile creating jar archive
git-svn-id: svn://anubis/gvsu@452 45c1a28c-8058-47b2-ae61-ca45b979098e
This commit is contained in:
parent
b5d3fb6e74
commit
eda9f7c194
@ -7,9 +7,13 @@ all: $(CLASSES)
|
||||
%.class: %.java
|
||||
javac $^
|
||||
|
||||
.PHONY: jar
|
||||
jar: $(CLASSES)
|
||||
jar cvf $(MAINCLASS).jar *.class
|
||||
|
||||
.PHONY: run
|
||||
run: $(CLASSES)
|
||||
java $(MAINCLASS)
|
||||
|
||||
clean:
|
||||
-rm -f *.class
|
||||
-rm -f *.class *.jar
|
||||
|
@ -15,7 +15,7 @@
|
||||
<h2>Retirement Planning Calculator</h2>
|
||||
<h4>Ballpark Estimate by American Savings Education Council</h4>
|
||||
|
||||
<applet code="RetirementCalculator.class" width="600" height="450">
|
||||
<applet archive="RetirementCalculator.jar" code="RetirementCalculator.class" width="600" height="450">
|
||||
</applet>
|
||||
|
||||
</body>
|
||||
|
Loading…
x
Reference in New Issue
Block a user