autoconf
[Top][All Lists]
Advanced

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

overwriting default make rules


From: satyakam mishra
Subject: overwriting default make rules
Date: Sun, 1 Mar 2009 20:36:56 -0800 (PST)

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
 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]