You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.6 KiB
59 lines
1.6 KiB
!IF 0
|
|
|
|
Copyright (c) 1989-1991 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.
|
|
|
|
NOTE: Commented description of this file is in \nt\public\oak\bin\sources.tpl
|
|
|
|
!ENDIF
|
|
|
|
CONTROLS_DIR = ..
|
|
TARGET_BOTH = 1
|
|
NOT_UNICODE = 1
|
|
|
|
!include .\atl.inc
|
|
|
|
SOURCES_USED = $(SOURCES_USED) .\atl.inc
|
|
|
|
# Include makefile.inc
|
|
NTTARGETFILES =
|
|
|
|
# (pritobla) should define NASHVILLE so that the version number between NT and IE remains the same
|
|
C_DEFINES = $(C_DEFINES) -D_NTSDK -D_USRDLL -D_ATL_STATIC_REGISTRY -D_ATL_MIN_CRT -DNASHVILLE
|
|
|
|
TARGETNAME = keyocx
|
|
TARGETPATH = obj
|
|
TARGETTYPE = DYNLINK
|
|
|
|
TARGETLIBS = $(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\gdi32.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
$(SDK_LIB_PATH)\oleaut32.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib
|
|
|
|
|
|
DLLENTRY = DllMain
|
|
DLLDEF = keyocx.def
|
|
#DLLBASE = @$(CONTROLS_DIR)\inc\base.txt,adlog
|
|
|
|
USE_MSVCRT = 0
|
|
|
|
SOURCES = \
|
|
keyocx.idl \
|
|
keyocx.rc \
|
|
keyocxctrl.cpp \
|
|
keyocx.cpp \
|
|
stdafx.cpp
|
|
|