[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Question regarding alias expansion..
From: |
Paul Smith |
Subject: |
Re: Question regarding alias expansion.. |
Date: |
Mon, 04 Aug 2008 12:49:23 -0400 |
On Mon, 2008-08-04 at 09:39 -0700, Rick Flower wrote:
> old perl script:
> % pmake release target=sun
> --> expanded to the following Make command
> % make debug=off asserts=off target=sun
>
> what I'd like to see Make handle:
> % make release target=sun
How about:
...bulk of makefile here...
.PHONY: release
release:
$(MAKE) debug=off asserts=off
--
-------------------------------------------------------------------------------
Paul D. Smith <address@hidden> Find some GNU make tips at:
http://www.gnu.org http://make.mad-scientist.us
"Please remain calm...I may be mad, but I am a professional." --Mad Scientist
- Re: Question regarding alias expansion.., (continued)
- Re: Question regarding alias expansion.., Rick Flower, 2008/08/04
- Re: Question regarding alias expansion.., Rick Flower, 2008/08/04
- Re: Question regarding alias expansion.., Sam Ravnborg, 2008/08/04
- Re: Question regarding alias expansion.., Rick Flower, 2008/08/04
- Re: Question regarding alias expansion.., Paul Smith, 2008/08/04
- Re: Question regarding alias expansion.., Rick Flower, 2008/08/04
- RE: Question regarding alias expansion.., Rinehart, Raleigh, 2008/08/05
- Re: Question regarding alias expansion.., Paul Smith, 2008/08/04
- Re: Question regarding alias expansion.., Rick Flower, 2008/08/04
Re: Question regarding alias expansion..,
Paul Smith <=