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.
41 lines
872 B
41 lines
872 B
#
|
|
# build instructions for user-mode driver for the Video Spigot video-capture board
|
|
#
|
|
|
|
MAJORCOMP=windows
|
|
MINORCOMP=vidcap
|
|
|
|
TARGETNAME=spigot
|
|
TARGETPATH=obj
|
|
TARGETTYPE=DYNLINK
|
|
UMTYPE=windows
|
|
|
|
|
|
C_DEFINES=-DWIN32 -DUNICODE
|
|
|
|
# Define libs we need and where to find them
|
|
|
|
TARGETLIBS=..\..\vcuser\obj\*\vcuser.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\gdi32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\user32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\kernel32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\advapi32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\winmm.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\version.lib
|
|
|
|
INCLUDES=..\inc;..\..\inc;$(BASEDIR)\private\windows\media\avi\inc
|
|
|
|
|
|
SOURCES=\
|
|
drvproc.c \
|
|
vmsg.c \
|
|
install.c \
|
|
palette.c \
|
|
dialog.c \
|
|
spigot.rc
|
|
|
|
|
|
#DLLENTRY=DllEntryPoint
|
|
|
|
DLLBASE=0x6c000000
|
|
|