diff options
Diffstat (limited to 'private/unimodem/common/sources')
-rw-r--r-- | private/unimodem/common/sources | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/private/unimodem/common/sources b/private/unimodem/common/sources new file mode 100644 index 000000000..47b42b75f --- /dev/null +++ b/private/unimodem/common/sources @@ -0,0 +1,65 @@ +!IF 0 + +Copyright (c) 1994 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. + + +Author: + + Steve Cathcart (stevecat) 15-Nov-1994 + +NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl + +Use the following line when this is UNICODE ported + +NOT_UNICODE=1 + + + $(BASEDIR)\public\sdk\lib\*\mpr.lib \ + +!ENDIF + +MAJORCOMP=shell +MINORCOMP=cpls + +TARGETNAME=rovcomm +TARGETPATH=..\lib +TARGETTYPE=LIBRARY + +NOT_LEAN_AND_MEAN=1 + +INCLUDES=.;..\inc;$(BASEDIR)\private\windows\inc + +C_DEFINES=-DWIN32 -DWINNT -D_WIN32 -DWINVER=0x0400 + +!IF "$(SHELLDBG)"=="1" +C_DEFINES=$(C_DEFINES) -DDEBUG -DFULL_DEBUG +!ENDIF + +UMTYPE=windows +EXPECTED_WINVER=4.0 + +SOURCES= rovcomm.c \ + rovmem.c \ + rovini.c \ + rovdi.c \ + slot.c \ + sec.c + +PRECOMPILED_INCLUDE=proj.h +PRECOMPILED_PCH=proj.pch +PRECOMPILED_OBJ=proj.obj + +!IFNDEF 386_WARNING_LEVEL +386_WARNING_LEVEL=/W3 +!ENDIF |