!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
386_OPTIMIZATION=/Od /Zp
!ENDIF

!IF "$(MIPS)" == "1"
BUILDCPU=MIPS
MIPS_FLAGS=/J /Od
!ENDIF

!IF "$(ALPHA)" == "1"
BUILDCPU=ALPHA
ALPHA_FLAGS=/J /Od
!ENDIF

MAJORCOMP=layers2
MINORCOMP=stringpp

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

TARGETNAME=stringpp
TARGETPATH=obj
TARGETTYPE=LIBRARY
UMLIBS=

#
# Never put our tools in the build tree.
#
!UNDEF _NT386TREE
!UNDEF _NTMIPSTREE
!UNDEF _NTALPHATRE

COM_DEFINES= -DWIN32 -DWINDOWS

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

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

386_STDCALL= 0

SOURCES=stringpp.c      \
	template.c      \
	response.c      \
	error.c

UMTYPE=console
UMAPPL=stringpp
UMLIBS=obj\*\stringpp.lib

NTTARGETFILES=executable
