Re: Multiple appending to target-specific variables

2001-10-18 Thread Paul D. Smith
%% David Stone <[EMAIL PROTECTED]> writes: ds> I believe I have discovered a bug in gnu make or an omission in its ds> documentation. Here is a simple makefile tt.mak: This is a bug in make. It's been fixed in the source for a while now (I _really_ need to get a new version out...) I can

Multiple appending to target-specific variables

2001-10-18 Thread David Stone
I believe I have discovered a bug in gnu make or an omission in its documentation. Here is a simple makefile tt.mak: FLAGS := xx aa: FLAGS += zzaa aa: FLAGS += yyaa aa: echo $(FLAGS) bug_info: $(MAKE) --version cat q:/betelg