The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 03-10-2009
mgessner mgessner is offline
Registered User
  
 

Join Date: Oct 2007
Posts: 50
Printing in make

Actions occur in Makefiles as they are needed by dependencies.
If this is the case, make sure you have a TAB character at the front of the line.

test:
<tab>@echo "Hello"

should work just fine.