c++.command-line - Ouput redirection in make
- Julio César Carrascal Urquijo (8/8) Oct 14 2003 Does the DM make support redirection? The following rule doesn't seems t...
- Walter (4/12) Oct 14 2003 Use the '+' prefix to support redirection:
- Julio César Carrascal Urquijo (2/4) Oct 14 2003 Thanks, that did the trick.
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/
Oct 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/
Oct 14 2003
"Walter" <walter digitalmars.com> wrote in messageUse the '+' prefix to support redirection: +php -w source.php >striped.phpThanks, that did the trick.
Oct 14 2003