mirror of https://github.com/tongzx/nt5src
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.
43 lines
982 B
43 lines
982 B
#############################################################################
|
|
#
|
|
# Microsoft Confidential
|
|
# Copyright (C) Microsoft Corporation 1999-2001
|
|
# All Rights Reserved.
|
|
#
|
|
# Makefile for RealTime Glitch Detector
|
|
#
|
|
#############################################################################
|
|
|
|
ROOT = ..\..\..\..\..
|
|
SRCDIR = ..
|
|
MINIPORT = GLITCH
|
|
WANT_WDMDDK = TRUE
|
|
IS_OEM = TRUE
|
|
DEPENDNAME = ..\depend.mk
|
|
DESCRIPTION = Realtime Glitch Detector
|
|
VERDIRLIST = debug retail
|
|
LINK32FLAGS = $(LINK32FLAGS)
|
|
LIBSNODEP = rt.lib hal.lib
|
|
RESNAME = $(MINIPORT)
|
|
|
|
OBJS = device.obj glitch.obj generic.obj
|
|
|
|
|
|
CFASTFLAGS = -O2gityb1
|
|
CFLAG_OPT = $(CFASTFLAGS) -G5
|
|
|
|
|
|
!include $(ROOT)\wdm10\wdm.mk
|
|
|
|
|
|
#CFLAGS = $(CFLAGS) -Fc
|
|
|
|
!IF "$(WINICE_PATH)" != ""
|
|
CFLAGS = $(CFLAGS) -Zi
|
|
!ENDIF
|
|
|
|
!IF "$(VERDIR)" == "debug"
|
|
CFLAGS = $(CFLAGS:yb1=b1)
|
|
!ENDIF
|
|
|
|
|