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.
35 lines
814 B
35 lines
814 B
#############################################################################
|
|
#
|
|
# Confidential Microsoft
|
|
# Copyright (C) Microsoft Corporation 1998
|
|
# All Rights Reserved.
|
|
#
|
|
# Sources for nabtsdump.exe
|
|
#
|
|
##########################################################################
|
|
|
|
NTROOT=$(BASEDIR)
|
|
|
|
TARGETNAME=nabtsdump
|
|
TARGETTYPE=PROGRAM
|
|
|
|
|
|
C_DEFINES=$(C_DEFINES) -DMSC=1 -D_X86_=1 -Gz
|
|
MSC_OPTIMIZATION=-Oxsb1
|
|
USE_MSVCRT=1
|
|
UMTYPE=console
|
|
|
|
!ifndef NON_UNICODE
|
|
C_DEFINES=$(C_DEFINES) /D_UNICODE=1 /DUNICODE=1
|
|
!endif
|
|
|
|
INCLUDES=$(WDMROOT)\ddk\inc; \
|
|
$(BASEDIR)\private\ntos\inc;
|
|
|
|
#TARGETLIBS=$(BASEDIR)\public\sdk\lib\*\stream.lib
|
|
|
|
|
|
TARGETPATH=obj
|
|
|
|
SOURCES= \
|
|
nabtsdump.c
|