overwriting default make rules

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

 



Hello,
I am trying to use autoconf to build for Symbian platform that involves more than 1 step at the linking stage, i.e., it has a static linking stage, followed by a post-linking stage. While the default make rule to produce an executable is just a linking stage e.g., the default rule may look something like:
 $(PROGRAM): $(OBJECTS) $(LIBS)
    $(LD) $(LD_FLAGS) $(OBJECTS) $(LIBS) -o $@
 
Is it the right thing to do if i overwrite this rule as follows:
 
 $(PROGRAM): $(OBJECTS) $(LIBS)
    $(LD) $(LD_FLAGS) $(OBJECTS) $(LIBS) -o $static_link_file
 


      
_______________________________________________
Autoconf mailing list
Autoconf@xxxxxxx
http://lists.gnu.org/mailman/listinfo/autoconf


[Index of Archives]     [GCC Help]     [Kernel Discussion]     [RPM Discussion]     [Red Hat Development]     [Yosemite News]     [Linux USB]     [Samba]

  Powered by Linux