Thread overview
Ouput redirection in make
Oct 14, 2003
Walter
October 14, 2003
Does the DM make support redirection? The following rule doesn't seems to work:

striped.php: source.php
    php -w source.php > striped.php


Thanks

--
Julio César Carrascal Urquijo
http://www.artelogico.com/


October 14, 2003
Use the '+' prefix to support redirection:

    +php -w source.php >striped.php

"Julio César Carrascal Urquijo" <adnoctum@phreaker.net> wrote in message news:bmh6ma$2qn1$1@digitaldaemon.com...
> Does the DM make support redirection? The following rule doesn't seems to work:
>
> striped.php: source.php
>     php -w source.php > striped.php
>
>
> Thanks
>
> --
> Julio César Carrascal Urquijo
> http://www.artelogico.com/
>
>


October 15, 2003
"Walter" <walter@digitalmars.com> wrote in message
> Use the '+' prefix to support redirection:
>
>     +php -w source.php >striped.php

Thanks, that did the trick.