83 lines
1.3 KiB
Plaintext
83 lines
1.3 KiB
Plaintext
|
!ifndef ROOT
|
||
|
ROOT=$(MAKEDIR:\ui\nmctl1=)
|
||
|
!endif
|
||
|
!ifndef DEVROOT
|
||
|
DEVROOT=$(ROOT)\dev
|
||
|
!endif
|
||
|
|
||
|
|
||
|
!include $(DEVROOT)\common.inc
|
||
|
|
||
|
MAJORCOMP=ui
|
||
|
MINORCOMP=chat
|
||
|
|
||
|
TARGETNAME=nmchat
|
||
|
TARGETPATH=$(_OBJ_DIR)
|
||
|
TARGETTYPE=DYNLINK
|
||
|
|
||
|
C_DEFINES = $(C_DEFINES) -D_USRDLL
|
||
|
|
||
|
DLLDEF=nmchat.def
|
||
|
DLLENTRY=_DllMainCRTStartup
|
||
|
USE_MSVCRT=1
|
||
|
|
||
|
386_STDCALL=1
|
||
|
|
||
|
# Enable lego build
|
||
|
BBTCOMP=1
|
||
|
|
||
|
#
|
||
|
# Libs common to NT and Win95
|
||
|
#
|
||
|
LINKLIBS=\
|
||
|
$(ROOT)\nmutil\nmutila\$(O)\nmutila.lib
|
||
|
|
||
|
TARGETLIBS=\
|
||
|
$(SDK_LIB_PATH)\kernel32.lib \
|
||
|
$(SDK_LIB_PATH)\advapi32.lib \
|
||
|
$(SDK_LIB_PATH)\user32.lib \
|
||
|
$(SDK_LIB_PATH)\gdi32.lib \
|
||
|
$(SDK_LIB_PATH)\uuid.lib \
|
||
|
$(SDK_LIB_PATH)\shell32.lib \
|
||
|
$(SDK_LIB_PATH)\comdlg32.lib \
|
||
|
$(SDK_LIB_PATH)\comctl32.lib \
|
||
|
$(SDK_LIB_PATH)\ole32.lib \
|
||
|
$(SDK_LIB_PATH)\oleaut32.lib \
|
||
|
$(ROOT)\t120\mst120\$(O)\mst120.lib
|
||
|
|
||
|
|
||
|
#
|
||
|
# List of sources
|
||
|
#
|
||
|
|
||
|
SOURCES= Chatldr.cpp \
|
||
|
ComboBoxEx.cpp \
|
||
|
Message.cpp \
|
||
|
NMChatCtl.cpp \
|
||
|
NmCtl1.cpp \
|
||
|
NmCtlDbg.cpp \
|
||
|
ms_util.cpp \
|
||
|
NmCtl1.rc
|
||
|
|
||
|
#
|
||
|
# Precompiled specs
|
||
|
#
|
||
|
PRECOMPILED_INCLUDE = precomp.h
|
||
|
PRECOMPILED_PCH = precomp.pch
|
||
|
PRECOMPILED_OBJ = precomp.obj
|
||
|
PRECOMPILED_CXX = 1
|
||
|
|
||
|
CONDITIONAL_INCLUDES = \
|
||
|
macocidl.h \
|
||
|
macwin32.h \
|
||
|
rpcerr.h \
|
||
|
rpcmac.h \
|
||
|
winwlm.h \
|
||
|
macname1.h \
|
||
|
macname2.h \
|
||
|
macpub.h \
|
||
|
macapi.h
|
||
|
|
||
|
|
||
|
|