Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com X-Originating-IP: [129.173.67.180] X-Originating-Email: [ru_yi99 AT hotmail DOT com] From: "yi ru" To: cygwin AT cygwin DOT com Subject: Question: make, makefile and KVM in J2ME Date: Thu, 27 Mar 2003 19:59:10 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 27 Mar 2003 19:59:14.0190 (UTC) FILETIME=[575212E0:01C2F49B] Note-from-DJ: This may be spam My question is different from the thread before in the mail list I am trying to run the make file for J2ME (Java 2 Micro Edition). When the make file runs I get the following error: Recursively making ../../tools/preverifier/build/win32 all... make[1]: Entering Directory '/cygdrive/d/j2me//j2me_cldc/tools/preverifier/build/win32/' make[1]: *** [check_class.obj] Error 255 make[1]: leaving directory '/cygdrive/d/j2me//j2me_cldc/tools/preverifier/build/win32/' make: *** [all] Error 1 Below is a listing of the make file: BUILDDIR=$(shell pwd) TOP=../.. PLATFORM=win32 export PLATFORM SUBDIRS = \ $(TOP)/tools/preverifier/build/win32 \ $(TOP)/api \ $(TOP)/samples \ $(TOP)/samples/jam ifneq ($(ROMIZING), false) SUBDIRS += $(TOP)/tools/jcc endif SUBDIRS += $(TOP)/kvm/VmWin/build all clean : FORCE @for i in $(SUBDIRS) ; do \ echo ">>>Recursively making "$$i" "$@"..."; \ cd $$i; $(MAKE) $@ \ || exit 1; cd $(BUILDDIR); \ echo "<<