I have to work with a bunch of .jar files. I don't want to have to always do the following:

javac -cp "c:\jarFolder\aa.jar;c:\jarFolder\bb.jar;c:\jarFolder\cc.jar;c:\jarFolder\dd.jar;c:\jarFolder\ee.jar (and so on and so on)" myProg.java

How do I compile myProg.java without having to type so many ? All my .jar files are located in "jarFolder" folder.