Re: GNU Make
From: Jakir (jakir_at_coolgoose.com)
Date: 06/25/04
- Next message: Paul D. Smith: "Re: GNU Make"
- Previous message: Paul D. Smith: "Re: GNU Make"
- In reply to: Paul D. Smith: "Re: GNU Make"
- Next in thread: Paul D. Smith: "Re: GNU Make"
- Reply: Paul D. Smith: "Re: GNU Make"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: 25 Jun 2004 10:01:12 -0700
We have our Make which doesnot support the above syntax " := ".
I have a Make file which contains the above syntax and when I try to
build using our Make utility it fails, while it works properly with
the GNU Make.
While investigating and trying to minimize the problem, I came accross
the above Syntax which is creating the problem. So I want to replace
the above syntax. I want to write a make file which would give me the
same functionality
that it gives with the above syntax.
Ragards
Jakir
Regards
Jakir
"Paul D. Smith" <psmith@gnu.org> wrote in message news:<vpdrbrj8mvsg.fsf@lemming.engeast.baynetworks.com>...
> %% jakir@coolgoose.com (Jakir) writes:
>
> j> I have a make file say makefile which contains
>
> j> SUBDIRS=lib bin
> j> include sub.rule
>
> j> The sub.rule file contains
>
> j> $(SUBDIRS:=.all):
> j> @echo "echo cd $(@:.all=)"
>
> j> The Syntax := is recursively expanded. I want to replace that, the
> j> output with the new syntax should be similar to what the previous
> j> syntax had.
>
> Sorry, I have no idea what you're trying to do here. Your comment ":=
> is recursively expanded" doesn't make sense to me..
>
> Can you be more specific? What's wrong with this syntax, and what do
> you want the new syntax to do?
- Next message: Paul D. Smith: "Re: GNU Make"
- Previous message: Paul D. Smith: "Re: GNU Make"
- In reply to: Paul D. Smith: "Re: GNU Make"
- Next in thread: Paul D. Smith: "Re: GNU Make"
- Reply: Paul D. Smith: "Re: GNU Make"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|