!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=formpp

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

TARGETNAME=formpp
TARGETPATH=obj
TARGETTYPE=LIBRARY

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

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=formpp.c	\
	util.c	\
	fmtp.c	\
	depend.c	\
	symbol.c	\
	inter.c	\
	parser.c	\
	strings.c	\
	lexical.c	\
	response.c	\
	template.c	\
	error.c

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

NTTARGETFILE1=executable
