![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| makefiles | klam | UNIX for Advanced & Expert Users | 0 | 09-23-2006 11:56 AM |
| makefiles in a directory and subdirectories | benjie_asu | UNIX for Dummies Questions & Answers | 0 | 10-28-2005 10:34 AM |
| Combining makefiles | Dan Rooney | UNIX for Advanced & Expert Users | 4 | 05-07-2004 05:19 AM |
| cannot print 3 variables on same line | Chris Jones | Shell Programming and Scripting | 2 | 04-20-2004 06:31 AM |
| PERL:print 32 variables into a text file | perleo | Shell Programming and Scripting | 2 | 04-25-2003 03:23 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
How can I print variables im using in makefiles?
for example in my make file im building path from env variables and string but need to see what is did
what is the best way to print the result? say I have in my Makefile : exec_prefix = $(RUN_ENV_LOCAL)/apache and I will like to print the exec_prefix value , how can it be done ? |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
Code:
<tab> @echo "$(exec_prefix)" |
|||
| Google The UNIX and Linux Forums |