help-make
[Top][All Lists]
Advanced

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

Newbie: Strange behaviour


From: subnet
Subject: Newbie: Strange behaviour
Date: Tue, 8 Jun 2004 21:13:44 +0200
User-agent: KMail/1.6.2

I have the following Makefile:

--------------
.PHONY: printstring

all: tg1 tg2

printstring:
address@hidden "TEST"

tg1: printstring
address@hidden 1

tg2: printstring
address@hidden 2
-------------

executing it gives

TEST
1
2

instead of 

TEST
1
TEST
2

GNU make 3.80
Seems that "printstring", despite being phony, after the first use is 
considered up-to-date.
Is this the expected behaviour?

Thanks




reply via email to

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