mirror of https://github.com/lianthony/NT4.0
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.
33 lines
568 B
33 lines
568 B
#
|
|
# Create an MCI handler DLL
|
|
#
|
|
|
|
MAJORCOMP=windows
|
|
MINORCOMP=mci
|
|
|
|
TARGETNAME=mcipnr32
|
|
TARGETPATH=obj
|
|
TARGETTYPE=DYNLINK
|
|
UMTYPE=windows
|
|
|
|
# Define libs we need and where to find them
|
|
|
|
TARGETLIBS=$(BASEDIR)\public\sdk\lib\*\user32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\kernel32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\winmm.lib
|
|
|
|
INCLUDES=
|
|
|
|
C_DEFINES=-DWIN32 -DUNICODE -DDEBUG
|
|
|
|
SOURCES=mcipionr.c \
|
|
pioncnfg.c \
|
|
piondrvr.c \
|
|
ntcomm.c \
|
|
mcipionr.rc
|
|
|
|
# Set up the entry point
|
|
|
|
DLLENTRY=DllInstanceInit
|
|
|
|
DLLBASE=0x68300000
|