[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Repeated execution of the same phony target. How?
From: |
Florian Sauer |
Subject: |
Repeated execution of the same phony target. How? |
Date: |
Wed, 21 Mar 2007 10:55:33 -0700 |
User-agent: |
Thunderbird 1.5.0.8 (X11/20061213) |
Hi there,
with the Makefile below I want it to print "Hello" twice, when I run:
>make test test
but instead it prints:
Hello
make: Nothing to be done for `test'.
Is there a way so that i can make it print "Hello" twice?
Thanks in advance,
Florian
--- snip ---
.PHONY: test
test:
@echo Hello
- Repeated execution of the same phony target. How?,
Florian Sauer <=