GNU Make
    Jerry Feldman 
    gaf at blu.org
       
    Fri Aug 20 15:37:35 EDT 1999
    
    
  
My original question was regarding the "$$@" string in the dependency
line. GNU Make does not support this (see Chapter 13, Incompatibilities
and Missing Features) in the GNU Make manual. (http://www.gnu.org). 
For an eample in system V make:
${PPROGS}: $$.o
	$(CC) ${LDFLAGS}  $? -o $@ 
In GNU Make:
${PPROGS}: %: %.o
	$(CC) ${LDFLAGS}  $? -o $@ 
Jerry Feldman <gaf at blu.org>
Boston Linux and Unix
http://www.blu.org
-
Subcription/unsubscription/info requests: send e-mail with
"subscribe", "unsubscribe", or "info" on the first line of the
message body to discuss-request at blu.org (Subject line is ignored).
    
    
More information about the Discuss
mailing list