FIX Compiling Instructions


1. Unzip all data

2. In your shell go to the folder you unzipped the data to

3. Compile the source:
	javac -sourcepath ./ fix/Client.java

4. Create new manifest file manifest.mf with following contents:

	Manifest-Version: 1.0
	Main-Class: fix.Client
	
5. Create the jar archive:
	jar cfmv FIX.jar manifest.mf icons fix

6. Create a key to sign the jar:
	keytool -genkey -alias Signer -dname "cn=[Your Name], c=de"
	(replace [Your Name] by your name)
	
7. Create the certificate to sign the jar:
	keytool -selfcert -validity 3650 -alias Signer -dname "cn=[Your Name], c=de"
	([Your Name] must be the same as above, the number after validity represents the days the key is valid)
	
8. Sign the jar:
	jarsigner FIX.jar Signer
	
9. (optional) Test the certificate

