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:
josh 2009-10-06 16:25:19 +00:00
parent b5d3fb6e74
commit eda9f7c194
2 changed files with 6 additions and 2 deletions

View File

@ -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

View File

@ -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>