!IF 0

Copyright (c) 1990  Microsoft Corporation

Module Name:

    sources.

Abstract:

    This file specifies the target component being built and the list of
    sources files needed to build that component.  Also specifies optional
    compiler switches and libraries that are unique for the component being
    built.

!ENDIF

!IF "$(386)" == "1"
BUILDCPU=i386
386_FLAGS=/J
!IF "$(NTDEBUG)" == ""
386_OPTIMIZATION=/Osw /Gs /Zp
!ELSE
386_OPTIMIZATION=/Od /Zp
!ENDIF
!ENDIF

!IF "$(MIPS)" == "1"
BUILDCPU=MIPS
BUILDCOMP=cl
!IF "$(NTDEBUG)" == ""
MIPS_FLAGS=/J /Ox
!ELSE
MIPS_FLAGS=/J /Zi /Od
!ENDIF
!ENDIF

!IF "$(ALPHA)" == "1"
BUILDCPU=ALPHA
BUILDCOMP=$(ALPHA_CC)
!IF "$(NTDEBUG)" == ""
ALPHA_FLAGS=/J /Ox
!ELSE
ALPHA_FLAGS=/J /Zi /Od
!ENDIF
!ENDIF

MAJORCOMP=layers2
MINORCOMP=dllcore

!IF "$(386)" == "1"
NTPROFILEINPUT=yes
!ENDIF

TARGETNAME=dllcore
TARGETPATH=obj
TARGETTYPE=LIBRARY
TARGETLIBS=

BLDCRT=1
COM_DEFINES= -DWIN32 -DWINDOWS -DDLL -D_MT -D_DLL -DSWP_DEMILAYR

!IF "$(NTDEBUG)" == ""
C_DEFINES= $(COM_DEFINES)
!ELSE
C_DEFINES= $(COM_DEFINES) -DDEBUG -DMINTEST
!ENDIF

!IF "$(NTDEBUG)" == ""
NTNOFPO=1
!ENDIF

SOURCES=dllentry.c  \
    regcall.c

LAYERS=..\..\layers2

INCLUDES=..\..\inc

UMTYPE=windows
UMLIBS=obj\*\dllcore.lib
