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
652 B
33 lines
652 B
#
|
|
# Create an installation and configuration DLL for the soundblaster
|
|
#
|
|
|
|
MAJORCOMP=windows
|
|
MINORCOMP=sndblst
|
|
|
|
TARGETNAME=sndblst
|
|
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\*\advapi32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\winmm.lib
|
|
|
|
INCLUDES=..\inc;$(BASEDIR)\private\inc
|
|
|
|
C_DEFINES=-DUNICODE
|
|
|
|
SOURCES=initc.c \
|
|
drvproc.c \
|
|
config.c \
|
|
registry.c \
|
|
sndblst.rc
|
|
|
|
|
|
DLLENTRY=DllEntryPoint
|
|
|
|
DLLBASE=0x6BC00000
|