On 2005-9-7 6:23 UTC, Praveen SINGH wrote:
> 
> export BASE:=yyy_BASE
> 
> ...
> dirs: 
>       mkdir -p $(OBJ)
>       cd $(SUBDIR_1) && $(MAKE)
>       cd $(SUBDIR_2) && $(MAKE) TARGET=$(BASE)
> 
> And I build like "make TARGET=xxx_BASE".

Try quoting it this way:
        cd $(SUBDIR_2) && $(MAKE) TARGET='$(BASE)'
Does that work?


_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to