Re: GNU make integration through an IDE

2003-10-03 Thread Paul D. Smith
%% Alain Magloire [EMAIL PROTECTED] writes: where do you go when the user asks to go to install? am Ho! I do not know. But it should not matter, we parse the am makefile and provide the users with a list of the targets. In am your example should not the install targets be consider as

Static pattern usage

2003-10-03 Thread Sam Ravnborg
I'm having troubles using static patters. See following example: deps_foo.o := foo.h foo.o : % : $(deps_%) bar.h FORCE @echo $^ FORCE: When executed I expected it to print: foo.h bar.h FORCE But it only prints

Re: Static pattern usage

2003-10-03 Thread Paul D. Smith
%% Sam Ravnborg [EMAIL PROTECTED] writes: sr deps_foo.o := foo.h sr foo.o : % : $(deps_%) bar.h FORCE sr @echo $^ sr When executed I expected it to print: sr foo.h bar.h FORCE sr But it only prints bar.h FORCE Right. sr Is it coorect behaviour that make does not expand