blob: c802476710ff8a1d98afbc4ca00e3d64b9779091 (
plain) (
tree)
|
|
!IF 0
Copyright (c) 1989 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:
Kenneth MacLeod (Kennethm) 9-Mar-1994
!ENDIF
MAJORCOMP = oleutest
MINORCOMP = letest
#
# This is the name of the target built from the source files specified
# below. The name should include neither the path nor the file extension.
#
TARGETNAME= icntrotl
#
# This specifies where the target is to be built. A private target of
# type LIBRARY or DYNLINK should go to obj, whereas a public target of
# type LIBRARY or DYNLINK should go to $(BASEDIR)\public\sdk\lib.
#
TARGETPATH= obj
#
# This specifies the type of the target, such as PROGRAM, DYNLINK, LIBRARY,
# etc.
#
TARGETTYPE= PROGRAM
INCLUDES= ..\..\..\ole2ui; \
..\..\..\bttncur; \
..\..\..\gizmobar; \
..\..\..\..\inc; \
..\..
C_DEFINES= \
$(C_DEFINES) \
-DFLAT \
-DWIN32=100 \
-D_NT1X_=100 \
-DNOEXCEPTIONS \
-DOLE_CNTR \
-DINPLACE_CNTR
SOURCES= \
..\icntrotl.rc \
classfac.c \
clipbrd.c \
cntrbase.c \
cntrinpl.c \
cntrline.c \
debug.c \
debug2.c \
dialogs.c \
dragdrop.c \
frametls.c \
heading.c \
linking.c \
main.c \
memmgr.c \
oleapp.c \
oledoc.c \
outlapp.c \
outldoc.c \
outlline.c \
outllist.c \
outlname.c \
outlntbl.c \
outltxtl.c \
status.c \
tests.c
UMTYPE= windows
UMENTRY= winmain
USE_CRTDLL=1
TARGETLIBS= \
..\..\..\ole2ui\daytona\obj\*\ole2u32a.lib \
..\..\..\gizmobar\daytona\obj\*\gizmobar.lib \
..\..\..\bttncur\daytona\obj\*\bttncur.lib \
$(BASEDIR)\public\sdk\lib\*\ole32.lib \
$(BASEDIR)\public\sdk\lib\*\shell32.lib \
$(BASEDIR)\public\sdk\lib\*\gdi32.lib \
$(BASEDIR)\public\sdk\lib\*\kernel32.lib \
$(BASEDIR)\public\sdk\lib\*\user32.lib \
$(BASEDIR)\public\sdk\lib\*\advapi32.lib \
$(BASEDIR)\public\sdk\lib\*\comdlg32.lib \
$(BASEDIR)\public\sdk\lib\*\uuid.lib
NTTARGETFILE0=copyfiles
|