FWD: Re: 3.81 and windows paths

2006-07-27 Thread Paul D. Smith
FYI; Brian provides some critical information we need to know. I fully expect we'll see a bunch more people asking for help as a result of this change in the Cygwin environment, so it's good that we are aware of it. I think one less customized version of GNU make will simplify things for everyone

Re: .PHONY targets and prerequisite checking

2006-07-27 Thread Paul D. Smith
%% Anoneironaut <[EMAIL PROTECTED]> writes: a> toplevel: main.o $(MODULES) $(MODULE_LIBS) a> .PHONY: $(MODULES) a> how can I avoid setting "foo" and "bar" to be phony? Assuming "foo" and "bar" are directories, then you can't do this. Even if you avoid having them phony it won't work co

.PHONY targets and prerequisite checking

2006-07-27 Thread Anoneironaut
Hi, I want to build a program that consists of several modules: toplevel/ foo/ Makefile foo.c bar/ Makefile bar.c Makefile main.c Each module would be compiled into a library, ie. in foo/, a library libfoo.a would be created, and in bar/ a l