Path: chuka.playstation.co.uk!news1.scei.co.jp!scea!greg_labrec@interactive.sony.com From: Elliott Lee Newsgroups: scea.yaroze.problems.pc Subject: Re: Stupid...weird...problem Date: Sun, 29 Mar 1998 03:48:25 -0800 Organization: Cisco Systems Lines: 42 Message-ID: <351E3509.274598DF@netmagic.net> References: <351E05D0.7802@earthlink.net> Reply-To: tenchi@cisco.com NNTP-Posting-Host: 171.69.39.237 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mozilla 4.03 [en] (Win95; U) That has to do with makefile dependencies. When make goes and reads your makefile, it checks to see if there are changes on the dependent files only. If the files are there, then it assumes no changes, otherwise it builds. What I do is add a "cleanup" which removes the *.o files. So I do something like: C_FLAGS = -01 LINKER = -Xlinker -Ttext -Xlinker 80090000 all: clean minefld.psx clean: del *.o minefld.psx: minefld.o # yada yada yada So, when the next build comes around, it checks the dependencies for "all" and calls "clean" first which removes the old OBJs. So when it processes "minefld.psx", then it sees that it's dependent on an ".o" that isn't there so it compiles. That usually does it. There may be another way, but this works for me... - e! tenchi@netmagic.net http://www.netmagic.net/~tenchi/yaroze/ Austin Kottke wrote: > > Ok now this is weird...I just got it ( I swear man...the yaroze code > like evolves one day or something...cause one day it will work and next > day it wont) whatever ..my problem is ---> When ever I save my game and > compile it...the compile says nothing to be done for it..Every time i do > it...I save it and it jsut says that there is no changes...I then got > the idea to put them in a makefile...SO i did that and it compiled...I > then loaded the source to the yaroze and there was no cahnges in the > code...I even purposely made like stupid errors to see if there was any > change...but no luck....Anyway Can someone help me here...Its probably a > stupid thing...thanks > -Austin/ROGUE