The makefile just consists of an include -
INCLUDE $(NTMAKEENV)\makefile.def
However it has (above) banner prohibiting any changes. I believe that one
can nevertheless change this file to point to different makefile.def(s)
e.g. based on check for an environment variable.
Are such changes permitted or are there some other esoteric concerns?
Thanks.
-ak
The only concern here is to build drivers using correct DDK way. I agree it
is rather esoteric concern. Whole build is based on makefile.def file stored
somewhere in DDK tree and NTMAKEENV variable contains its directory.
Sure, you can change it any way you need. This is normal nmake makefile, no
magic. The question is “why?”. For custom changes there is makefile.inc file
which is automatically included by standard makefile.def.
Best regards,
Michal Vodicka
STMicroelectronics Design and Application s.r.o.
[michal.vodicka@st.com, http:://www.st.com]
The makefile just consists of an include -
INCLUDE $(NTMAKEENV)\makefile.def
However it has (above) banner prohibiting any changes. I believe that one
can nevertheless change this file to point to different makefile.def(s)
e.g. based on check for an environment variable.
Are such changes permitted or are there some other esoteric concerns?
Thanks.
-ak
You are currently subscribed to ntdev as: michal.vodicka@st.com
To unsubscribe send a blank email to %%email.unsub%%
No! Do NOT edit that file. No one expects that file to ever change. Use
the sources file and the makefile.inc file to handle customization. Also
customize based upon which environment is running e.g. Windows 2000 DDK, XP
DDK, NT 4 DDK. You can set up for the one you need for a build.
----- Original Message -----
From: To: “NT Developers Interest List” Sent: Monday, September 09, 2002 5:56 PM Subject: [ntdev] Makefile: DO NOT EDIT THIS FILE!
> The makefile just consists of an include - > INCLUDE $(NTMAKEENV)\makefile.def > > However it has (above) banner prohibiting any changes. I believe that one > can nevertheless change this file to point to different makefile.def(s) > e.g. based on check for an environment variable. > > Are such changes permitted or are there some other esoteric concerns? > Thanks. > -ak > > — > You are currently subscribed to ntdev as: xxxxx@yoshimuni.com > To unsubscribe send a blank email to %%email.unsub%%