Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
TARGETPATH=obj TARGETTYPE=DRIVER TARGETNAME=IRMK7
# for building checked objs in the objd\i386 directory, # free build objs are built in the obj\i386 directory #CHECKED_ALT_DIR=1
# // These optimizations are the standard optimizations, plus generate # // .asm files for each source file #MSC_OPTIMIZATION=/Oxs /FAs # // Max optimization, no assembly listing output #MSC_OPTIMIZATION=/Oxs # // Disable optimization, enable intrinsic functions, # // e.g., memset, memcpy, etc. (Seems needed if /Od is used.) MSC_OPTIMIZATION=/Od /Oi # use /P for preprocess source files to .i (for code coach in vtune)
# in environment set NTDEBUG=ntsdnodbg # and NTDEBUGTYPE=windbg # to get free build with source level cabable debug
# generate a .map file (useful for debugging under win9X) LINKER_FLAGS=-MAP
TARGETLIBS=$(DDK_LIB_PATH)\ndis.lib
C_DEFINES=$(C_DEFINES) -DNDIS50_MINIPORT -DNDIS_MINIPORT_DRIVER -DIRDA
DRIVER_ALIGNMENT=0x200
INCLUDES=..\..\inc;..\..\..\inc
SOURCES=\ dbg.c \ interrup.c \ mk7comm.c \ mkinit.c \ mkmini.c \ send.c \ sir.c \ util.c \ winoids.c \ winpci.c \ winreg.c \ irmk7.rc
# set up for precompiled headers PRECOMPILED_INCLUDE=precomp.h PRECOMPILED_PCH=precomp.pch PRECOMPILED_OBJ=precomp.obj
# this calls a local makefile.inc to build other dependencies # like the irmk7.mof file for GUID support #NTTARGETFILE0=mofcomp
|