Sponsored Content
Full Discussion: vpath directive in make
Top Forums Shell Programming and Scripting vpath directive in make Post 302083977 by Perderabo on Tuesday 8th of August 2006 02:53:29 PM
Old 08-08-2006
I have no idea what you're talking about. In my universe, VPATH is a macro and you can do stuff like:
Code:
VPATH=/this:/that:/the/other/thing
default:
        @echo in makefile VPATH = $(VPATH)

Used to be that make did not have "directives". The HP-UX man page mentions a .MUTEX directive while the Solaris man page mentions an include directive. I never heard of a vpath directive and I have no idea how to get it working. This is why you are not getting responses to your question. I guess nobody else heard of it either.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

apache directive only for outside network

I set up a directive for the .htaccess file in one of my web directories. It works fine. Is there a way to force only users outside my internal home network to go through the password authorization? Or, put another way, any user in my network should not have to enter a password. Is that possible? (2 Replies)
Discussion started by: dangral
2 Replies

2. Programming

precompile directive?

hey everyone. havent posted here in a longgggg time. hope to see some familiar faces! heres my question, ive been doing basic programming in c++ again and want to use getch(). in *nix i have to use the curses library, and in windows conio.h is there a way i can have the compiler determine... (2 Replies)
Discussion started by: norsk hedensk
2 Replies

3. AIX

vpath fbvol relationship

Hi, I have a question about AIX vpaths and the fbvols you create via dscli on a DS8100 storage. Is there any command or any way to look which fbvol corresponds which vpath on operating system like the command fget_config -Av on a FastT storage system? I tried the datapath query device, datapath... (1 Reply)
Discussion started by: samaks
1 Replies

4. AIX

vpath to an hdisk

Is there a simply way for me to map a vpath to an hdisk on AIX 5.2? (5 Replies)
Discussion started by: 2dumb
5 Replies

5. Programming

Include directive

Hi there, I'm working on a c++ project and I need to use some libraries which are part of a framework. I installed it on my home directory, and alle the .hh are located in subdirs of my home. I'd like to include the files I need just as if they where std c header, that is: #include... (2 Replies)
Discussion started by: clalfa
2 Replies

6. AIX

AIX vpath lun

Hi everyone, how can I check if I have LUNs in a server and the LUNīs vpath in AiX? thx (5 Replies)
Discussion started by: jcpetela
5 Replies

7. AIX

vpath and sharks

Hello everyone: just want to know how to get the name of the shark in which the vpath is? thanks (2 Replies)
Discussion started by: jcpetela
2 Replies

8. Web Development

regex in apache Allow from directive

Hi, Does the apache Allow from directive support regular expressions? such as: Allow from ^web11blah\.blah\.blah\.yahoo\.com$ what i want to do: allow access from hosts in the range web1160blah.blah.blah.yahoo.com to web1189blah.blah.blah.yahoo.com notice the 1160 to 1189 range as part... (3 Replies)
Discussion started by: Yogesh Sawant
3 Replies

9. AIX

lscfg -vl vpath - error

Hello all, I need to run successfully this command : 1:root@abcd:/root # lscfg -vl vpathXY lscfg: device vpathXY not found. 1:root@abcd:/root # echo $? 1 If I run it on another server I will get no output which is ok : 1:root@efgh:/root # lscfg -vl vpathAB 1:root@efgh:/root # echo... (0 Replies)
Discussion started by: phobus
0 Replies

10. AIX

lscfg -vl vpath - error

Hello all, I need to run successfully this command : 1:root@abcd:/root # lscfg -vl vpathXY lscfg: device vpathXY not found. 1:root@abcd:/root # echo $? 1 If I run it on another server I will get no output which is ok : 1:root@efgh:/root # lscfg -vl vpathAB 1:root@efgh:/root # echo $?... (4 Replies)
Discussion started by: phobus
4 Replies
TAP::Parser::Result::Plan(3)				User Contributed Perl Documentation			      TAP::Parser::Result::Plan(3)

NAME
TAP::Parser::Result::Plan - Plan result token. VERSION
Version 3.28 DESCRIPTION
This is a subclass of TAP::Parser::Result. A token of this class will be returned if a plan line is encountered. 1..1 ok 1 - woo hooo! 1..1 is the plan. Gotta have a plan. OVERRIDDEN METHODS
Mainly listed here to shut up the pitiful screams of the pod coverage tests. They keep me awake at night. o "as_string" o "raw" Instance Methods "plan" if ( $result->is_plan ) { print $result->plan; } This is merely a synonym for "as_string". "tests_planned" my $planned = $result->tests_planned; Returns the number of tests planned. For example, a plan of 1..17 will cause this method to return '17'. "directive" my $directive = $plan->directive; If a SKIP directive is included with the plan, this method will return it. 1..0 # SKIP: why bother? "has_skip" if ( $result->has_skip ) { ... } Returns a boolean value indicating whether or not this test has a SKIP directive. "explanation" my $explanation = $plan->explanation; If a SKIP directive was included with the plan, this method will return the explanation, if any. "todo_list" my $todo = $result->todo_list; for ( @$todo ) { ... } perl v5.16.3 2013-05-02 TAP::Parser::Result::Plan(3)
All times are GMT -4. The time now is 08:04 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy