From: Dan A. <da...@gm...> - 2004-01-28 22:13:04
|
On Wed, Jan 28, 2004 at 12:12:56PM +0100, Szalai Ferenc wrote: > Hi > > I attached a small patch which basically make some little changes in > Makefiles of CoLinux to be the compileing more easiest. I think you misunderstood the Makefile strategy in the coLinux tree. The tree is actually a flat tree. The top Makefile includes the subdir Makefiles, and so on. There is no recursive invocation of make, so the 'all' target is evaluated several times if that patch applied. But it will work quite well if you move these declarations to the 'ifeq $(BUILD_ROOT) ... else' block. This way they would get prepended at the beginning of the evaluation, and only for the evaluation from that directory. I'd add that, thanks. > I agree with Jeff Lawson who said that just refer to MiniXML in README > isn't enough because there is a PHP/PERL based MiniXML project as well > (and the eg. the google will found this first) > > I think our library is found here: > http://www.easysw.com/~mike/mxml/ Yep, I'll fix that. -- Dan Aloni da...@gm... |