How to Compile a JOGL app in eclipse:

Open Eclipse
Create a new workspace directory.
Put the myjogl folder into that directory.
Go to the Workbench
File>Import...
Click General>Existing Projects into Workspace
Click Next>
Click  the radio button next to Select root directory:
Click Browse...
click on the myjogl folder included with this readme file.
make sure myjogl is checked
Click Finish

Then compile and run.

How to Compile jogl apps from the command line:
Take all the dll and jar files in the myjogl directory and move them to the directory where your source code is. 
Then for example:
javac classpath .;jogl.jar;gluegen-rt.jar SimpleGLEventListener.java
javac classpath .;jogl.jar;gluegen-rt.jar SimpleJoglApp.java
java classpath .;jogl.jar;gluegen-rt.jar SimpleJoglApp
