make-w32
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Possible bug with 3.81?


From: Chris Sutcliffe
Subject: Re: Possible bug with 3.81?
Date: Thu, 26 Oct 2006 21:06:13 -0400

Solved it.  It turns out the order of the 'all' rule matters more for
3.81 than in previous versions of make.  Previously this worked:

# targets
all: $(LIBS) $(EXTRA_OBJS) ddk directx

but broke under 3.81 as a result of the object files not being
available at the time for include into the import library.  Switching
the order to:

# targets
all: $(EXTRA_OBJS) $(LIBS) ddk directx

fixed the issue.

Cheers!

Chris

--
Chris Sutcliffe
http://ir0nh34d.googlepages.com
http://ir0nh34d.blogspot.com
http://emergedesktop.org




reply via email to

[Prev in Thread] Current Thread [Next in Thread]