Thread overview
DMC make - does it do macro string substitution?
Apr 07, 2003
Matthew Wilson
Apr 07, 2003
Arjan Knepper
Apr 07, 2003
Matthew Wilson
Apr 07, 2003
Arjan Knepper
Apr 07, 2003
Walter
April 07, 2003
I'm using the following syntax:

EXES_MFCSTL  = $(OBJS_MFCSTL:.obj=.exe)

Doesn't work.

Any ideas?




April 07, 2003
I'm using this at several places and just works. (Using smake.exe)

OBJS	= $(SRCS:.c=.obj)


Matthew Wilson wrote:
> I'm using the following syntax:
> 
> EXES_MFCSTL  = $(OBJS_MFCSTL:.obj=.exe)
> 
> Doesn't work.
> 
> Any ideas?
> 
> 
> 
> 

April 07, 2003
Use smake rather than make for that.

"Matthew Wilson" <dmd@synesis.com.au> wrote in message news:b6s4c1$1lqe$1@digitaldaemon.com...
> I'm using the following syntax:
>
> EXES_MFCSTL  = $(OBJS_MFCSTL:.obj=.exe)
>
> Doesn't work.
>
> Any ideas?
>
>
>
>


April 07, 2003
I'm using make, as I'm preparing a distribution that will be usable by everyone (and not just the CD-buyers).

I've just explicitly duplicated all the symbols. sigh ...

"Arjan Knepper" <ask@me.to> wrote in message news:b6s6f1$1nq$1@digitaldaemon.com...
> I'm using this at several places and just works. (Using smake.exe)
>
> OBJS = $(SRCS:.c=.obj)
>
>
> Matthew Wilson wrote:
> > I'm using the following syntax:
> >
> > EXES_MFCSTL  = $(OBJS_MFCSTL:.obj=.exe)
> >
> > Doesn't work.
> >
> > Any ideas?
> >
> >
> >
> >
>


April 07, 2003
I know what you mean, I was just playing with make smake and gnu-make for win32. I think I would choose gnu-make.

Matthew Wilson wrote:
> I'm using make, as I'm preparing a distribution that will be usable by
> everyone (and not just the CD-buyers).
> 
> I've just explicitly duplicated all the symbols. sigh ...
> 
> "Arjan Knepper" <ask@me.to> wrote in message
> news:b6s6f1$1nq$1@digitaldaemon.com...
> 
>>I'm using this at several places and just works. (Using smake.exe)
>>
>>OBJS = $(SRCS:.c=.obj)
>>
>>
>>Matthew Wilson wrote:
>>
>>>I'm using the following syntax:
>>>
>>>EXES_MFCSTL  = $(OBJS_MFCSTL:.obj=.exe)
>>>
>>>Doesn't work.
>>>
>>>Any ideas?
>>>
>>>
>>>
>>>
>>
> 
>