howa <[EMAIL PROTECTED]> wrote:

> all: do do
> 
> do:
>         ls -la
> 
> 
> I want to run the do command twice.

Each target will only be run once, but you can have two commands for a
single target:

all: do

do:
        ls -la
        ls -la


regards Henrik
-- 
The address in the header is only to prevent spam. My real address is:
hc3(at)poolhem.se Examples of addresses which go to spammers:
[EMAIL PROTECTED] [EMAIL PROTECTED]

Reply via email to