The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > High Level Programming
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #4 (permalink)  
Old 08-11-2007
porter porter is offline
Registered User
 

Join Date: Jan 2007
Posts: 2,965
A makefile rule is as follows


Code:
output :  input......
      command to build
Your macro $(PROC_PREFIX) looks wrong as it's not in the rule.

Eg your command says "$(PROC_PREFIX)arther.o" but the rule says "arther.o"
Reply With Quote