mirror of https://github.com/tongzx/nt5src
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.
36 lines
823 B
36 lines
823 B
#
|
|
# Create CD Networking DLL
|
|
#
|
|
|
|
MAJORCOMP=windows
|
|
MINORCOMP=deluxecd
|
|
|
|
TARGETNAME=cdnet
|
|
TARGETPATH=..\lib
|
|
TARGETTYPE=LIBRARY
|
|
UMTYPE=windows
|
|
|
|
# Define libs we need and where to find them
|
|
|
|
TARGETLIBS=$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\crtdll.lib \
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\winmm.lib \
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(SDK_LIB_PATH)\htmlhelp.lib \
|
|
$(SDK_LIB_PATH)\urlmon.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib
|
|
|
|
|
|
INCLUDES=$(BASEDIR)\public\sdk\inc;..\..\..\inc
|
|
|
|
C_DEFINES=-DUNICODE -D_UNICODE -DWINVER=0x0400 -DDAYTONA -D_WIN32_WINNT=0x0400
|
|
|
|
# C_DEFINES=-DUNICODE -DDBG -DDEBUG
|
|
# NTDEBUG=ntsd
|
|
# NTDEBUGTYPE=both
|
|
# MSC_OPTIMIZATION=/Od /Zi
|
|
|
|
SOURCES=getinfo.cpp dllmain.cpp condlg.cpp
|
|
|