blob: c7837f4fbf233e0485e98da8f4f8b8077bfa17dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#############################################################################
#
# Copyright (c) Microsoft Corporation.
# All Rights Reserved.
#
# Makefile for wdm\audio\sysfx\apo
#
#############################################################################
## NT BUILD ENVIROMENT
#
# DO NOT EDIT THIS FILE!!! Edit .\sources. if you want to add a new source
# file to this component. This file merely indirects to the real make file
# that is shared by all the components of NT.
#
!if defined(IA64)
!message This sample is not to be built for IA64 targets
!else
!IF DEFINED(_NT_TARGET_VERSION)
#! IF $(_NT_TARGET_VERSION)>=0x501
! IF $(_NT_TARGET_VERSION)>=0x600
! INCLUDE $(NTMAKEENV)\makefile.def
! ELSE
# Only warn once per directory
! INCLUDE $(NTMAKEENV)\makefile.plt
! IF "$(BUILD_PASS)"=="PASS1"
! message BUILDMSG: Warning : Building the sample "$(MAKEDIR)" for downlevel build environments is temporarily disabled in WDK for Beta2.
! ENDIF
! ENDIF
!ELSE
! INCLUDE $(NTMAKEENV)\makefile.def
!ENDIF
!endif
|