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.
|
|
############################################################################# # # Microsoft Confidential # Copyright (C) Microsoft Corporation 1991 # All Rights Reserved. # # Makefile for gateway directory # #############################################################################
ROOT =..\..\.. DEVICEDIR = SHADOW IS_32 = TRUE IS_OEM = TRUE USEPCH = TRUE
# Define the versions and the default version for VxDs # in the dos386 tree if not already defined.
VERDIRLIST = maxdebug debug retail
!IFNDEF DEFAULTVERDIR DEFAULTVERDIR = maxdebug !ENDIF
VERSIONLIST = $(VERDIRLIST) COMMONMKFILE = $(DEVICEDIR).mk
MASM6 = TRUE LIB= $(ROOT)\dev\tools\c\lib !include ..\Common.mk
CFLAGS = $(CFLAGS) AFLAGS = $(AFLAGS)
# If the directory doesn't build "maxdebug", define "maxdebug" as "debug".
!IFDEF VERSIONLIST !IF "$(VERSIONLIST:maxdebug=)" == "$(VERSIONLIST)" maxdebug: debug !ENDIF !ENDIF # VERSIONLIST
|