all:
	javac HelloWorld.java
	jar cfm hello.jar Manifest.txt HelloWorld.class

test:
	java -jar hello.jar 
