help-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to tell gbu make to run a target twice?


From: Henrik Carlqvist
Subject: Re: How to tell gbu make to run a target twice?
Date: Mon, 02 Jun 2008 20:47:45 +0200
User-agent: Pan/0.14.2 (This is not a psychotic episode. It's a cleansing moment of clarity.)

howa <howachen@gmail.com> 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:
root@localhost postmaster@localhost



reply via email to

[Prev in Thread] Current Thread [Next in Thread]