> Date: Mon, 26 Jul 2004 13:46:34 -0400 > From: [EMAIL PROTECTED] (Maya) > > When I run make it only creates the exception.o form "Makefile.jme", but never any > of the other files.
That's because Make by default creates the first target it sees, and in your case, that target is exception.o. Try "make all" instead. _______________________________________________ Help-make mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/help-make
