I have attached below an excerpt from public\ie\cesysgen\makefile, at which
point in the build would this be called and would be called if I moved the
same code to my platform directory, only I find it doesn't and maybe
dependent on sysgen phase but I can't say for sure.


inetcpl::
-del /q $(SG_INPUT_LIB)\$@.res
!if "$(SYSGEN_QVGAP)" == "1"
res2res $(SG_INPUT_LIB)\$@_qvga.res $(SG_INPUT_LIB)\$@_base.res -fo
$(SG_INPUT_LIB)\$@.res
!else
res2res $(SG_INPUT_LIB)\$@_vgal.res $(SG_INPUT_LIB)\$@_base.res -fo
$(SG_INPUT_LIB)\$@.res
!endif


Regards

Re: RES2RES makefile by Doug

Doug
Wed Sep 27 18:56:03 CDT 2006

This is run during sysgen if the "inetcpl" component has been selected (via
SYSGEN environment variable).

What are you trying to do?

--
-------------------------
- Doug
This information is provided AS-IS, and does not bear any warranty.
This posting may not reflect the views of Microsoft Corporation.


"TMa" <tma@tma.com> wrote in message
news:efeutb$7k0$1$8302bc10@news.demon.co.uk...
>I have attached below an excerpt from public\ie\cesysgen\makefile, at which
>point in the build would this be called and would be called if I moved the
>same code to my platform directory, only I find it doesn't and maybe
>dependent on sysgen phase but I can't say for sure.
>
>
> inetcpl::
> -del /q $(SG_INPUT_LIB)\$@.res
> !if "$(SYSGEN_QVGAP)" == "1"
> res2res $(SG_INPUT_LIB)\$@_qvga.res $(SG_INPUT_LIB)\$@_base.res -fo
> $(SG_INPUT_LIB)\$@.res
> !else
> res2res $(SG_INPUT_LIB)\$@_vgal.res $(SG_INPUT_LIB)\$@_base.res -fo
> $(SG_INPUT_LIB)\$@.res
> !endif
>
>
> Regards
>



Re: RES2RES makefile by TMa

TMa
Thu Sep 28 03:02:16 CDT 2006

I want to clone public\ie\oak\inetcpl to my platform directory. I am
modifying inetcpl_vgal.rc amongst other things, I want the resulting
inetcpl.res (which is created in public\ie\cesysgen\makefile) to include my
modified inetcpl_vgal.res not the original one. It looks that if I clone
public\ie\oak\inetcpl I also need to clone public\ie\cesysgen\makefile and
somehow get PB to think that we are in the sysgen phase.

Regards

"Doug Cook [MSFT]" <dcook@online.microsoft.com> wrote in message
news:eaYd%23Bp4GHA.1244@TK2MSFTNGP03.phx.gbl...
> This is run during sysgen if the "inetcpl" component has been selected
> (via SYSGEN environment variable).
>
> What are you trying to do?
>
> --
> -------------------------
> - Doug
> This information is provided AS-IS, and does not bear any warranty.
> This posting may not reflect the views of Microsoft Corporation.
>
>
> "TMa" <tma@tma.com> wrote in message
> news:efeutb$7k0$1$8302bc10@news.demon.co.uk...
>>I have attached below an excerpt from public\ie\cesysgen\makefile, at
>>which point in the build would this be called and would be called if I
>>moved the same code to my platform directory, only I find it doesn't and
>>maybe dependent on sysgen phase but I can't say for sure.
>>
>>
>> inetcpl::
>> -del /q $(SG_INPUT_LIB)\$@.res
>> !if "$(SYSGEN_QVGAP)" == "1"
>> res2res $(SG_INPUT_LIB)\$@_qvga.res $(SG_INPUT_LIB)\$@_base.res -fo
>> $(SG_INPUT_LIB)\$@.res
>> !else
>> res2res $(SG_INPUT_LIB)\$@_vgal.res $(SG_INPUT_LIB)\$@_base.res -fo
>> $(SG_INPUT_LIB)\$@.res
>> !endif
>>
>>
>> Regards
>>
>
>



Re: RES2RES makefile by Bruce

Bruce
Thu Sep 28 11:47:58 CDT 2006

Instead you can modify the RES file and put it in the appropriate language
folder in your FILES folder. Then modify platform.loc to tell it to process
the RES file during makeimg.

--
Bruce Eitman (eMVP)
Senior Engineer
beitman AT applieddata DOT net

Applied Data Systems
www.applieddata.net
An ISO 9001:2000 Registered Company
Microsoft WEP Gold-level Member

"TMa" <tma@tma.com> wrote in message
news:effvie$ptg$1$8300dec7@news.demon.co.uk...
>I want to clone public\ie\oak\inetcpl to my platform directory. I am
>modifying inetcpl_vgal.rc amongst other things, I want the resulting
>inetcpl.res (which is created in public\ie\cesysgen\makefile) to include my
>modified inetcpl_vgal.res not the original one. It looks that if I clone
>public\ie\oak\inetcpl I also need to clone public\ie\cesysgen\makefile
>and somehow get PB to think that we are in the sysgen phase.
>
> Regards
>
> "Doug Cook [MSFT]" <dcook@online.microsoft.com> wrote in message
> news:eaYd%23Bp4GHA.1244@TK2MSFTNGP03.phx.gbl...
>> This is run during sysgen if the "inetcpl" component has been selected
>> (via SYSGEN environment variable).
>>
>> What are you trying to do?
>>
>> --
>> -------------------------
>> - Doug
>> This information is provided AS-IS, and does not bear any warranty.
>> This posting may not reflect the views of Microsoft Corporation.
>>
>>
>> "TMa" <tma@tma.com> wrote in message
>> news:efeutb$7k0$1$8302bc10@news.demon.co.uk...
>>>I have attached below an excerpt from public\ie\cesysgen\makefile, at
>>>which point in the build would this be called and would be called if I
>>>moved the same code to my platform directory, only I find it doesn't and
>>>maybe dependent on sysgen phase but I can't say for sure.
>>>
>>>
>>> inetcpl::
>>> -del /q $(SG_INPUT_LIB)\$@.res
>>> !if "$(SYSGEN_QVGAP)" == "1"
>>> res2res $(SG_INPUT_LIB)\$@_qvga.res $(SG_INPUT_LIB)\$@_base.res -fo
>>> $(SG_INPUT_LIB)\$@.res
>>> !else
>>> res2res $(SG_INPUT_LIB)\$@_vgal.res $(SG_INPUT_LIB)\$@_base.res -fo
>>> $(SG_INPUT_LIB)\$@.res
>>> !endif
>>>
>>>
>>> Regards
>>>
>>
>>
>
>