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.
|
|
#==========================================================================; # # THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR # PURPOSE. # # Copyright (c) 1992-2000 Microsoft Corporation # #--------------------------------------------------------------------------; # # sources # # Description: # This file tells "build" how to build the codec for NT. # # #==========================================================================;
# # Define target file. # TARGETNAME=msadp32 DLLDEF =msadpcm.def TARGETPATH=obj TARGETTYPE=DYNLINK TARGETEXT =acm UMTYPE =windows
# # Enable working set tuning - requires .prf file. # NTPROFILEINPUT=yes
# # define libs we need and where to find them # TARGETLIBS=$(SDK_LIB_PATH)\user32.lib \ $(SDK_LIB_PATH)\gdi32.lib \ $(SDK_LIB_PATH)\kernel32.lib \ $(SDK_LIB_PATH)\advapi32.lib \ $(SDK_LIB_PATH)\winmm.lib
INCLUDES=..\..\verinfo\usa
!if $(FREEBUILD) ACM_DEBUG_DEFS= !else ACM_DEBUG_DEFS=-DDEBUG !endif
C_DEFINES=$(ACM_DEBUG_DEFS) -Dusa -DACM -DUNICODE -D_UNICODE
SOURCES=init.c \ codec.c \ msadpcm.c \ debug.c \ msadpcm.rc
DLLBASE=0x66620000
|