If I'm trying to compile a whole bunch of java files, what's the best way of doing it? I gave up trying to figure out an elegant way of doing it (and the CS computers apparently don't have ant, which I think I might have used sometime in the far distant past), and did this:
javac */*.java */*/*.java */*/*/*.java jar cvf myjarfile.jar */*.class */*/*.class */*/*/*.class This seems really silly to me. It also doesn't work: $ java -jar myjarfile.jar Failed to load Main-Class manifest attribute from myjarfile.jar Any suggestions? Google has failed me. ~ Ross ____________________ BYU Unix Users Group http://uug.byu.edu/ ___________________________________________________________________ List Info: http://uug.byu.edu/cgi-bin/mailman/listinfo/uug-list
