29 lines
666 B
Makefile
29 lines
666 B
Makefile
|
##########################################################################
|
||
|
#
|
||
|
# Microsoft Confidential
|
||
|
# Copyright (C) Microsoft Corporation 1996
|
||
|
# All Rights Reserved.
|
||
|
#
|
||
|
##########################################################################
|
||
|
|
||
|
!ifdef NTMAKEENV
|
||
|
|
||
|
#
|
||
|
# Build using BUILD.EXE (Do not edit this section of this file, edit SOURCES)
|
||
|
#
|
||
|
!INCLUDE $(NTMAKEENV)\makefile.def
|
||
|
|
||
|
!else # NTMAKEENV
|
||
|
|
||
|
ROOT = ..\..\..
|
||
|
|
||
|
MSDEVMK = sendmail.mak
|
||
|
|
||
|
CFG_RETAIL = "sendmail - Win32 Release"
|
||
|
CFG_DEBUG = "sendmail - Win32 Debug"
|
||
|
|
||
|
!include $(ROOT)\dev\vcwrap.mk
|
||
|
|
||
|
INCLUDE = ..\..\inc;$(INCLUDE);$(ROOT)\dev\inc;$(ROOT)\dev\msdev\include
|
||
|
|
||
|
!endif
|