Apply .gitattributes normalization to convert all CRLF line endings inherited from Windows-origin source files to Unix LF. 175 files, zero content changes.
62 lines
2.1 KiB
Plaintext
62 lines
2.1 KiB
Plaintext
#############################################################################
|
|
# Shree Ganesha Inc.
|
|
# Sources File for the Skywalker1 TV Tuner
|
|
# Date : 29th September, 2009
|
|
# Description : This file is a must for the Compilation of the
|
|
# Skywalker Driver.
|
|
#
|
|
##########################################################################
|
|
|
|
TARGETNAME=SkyWalker1TVTuner # Set driver's name
|
|
TARGETTYPE=DRIVER # Set type of file built, for example, program, DLL, or driver
|
|
# For BDA minidriver, set to DRIVER.
|
|
TARGETPATH=obj$(BUILD_ALT_DIR) # Set destination directory for the built file
|
|
# Depending on whether your build environment is "free" or "checked",
|
|
# the BUILD_ALT_DIR variable appends "fre" or "chk" to the \obj subdirectory.
|
|
DRIVERTYPE=WDM # Set type of driver, can be set to either WDM or VXD.
|
|
# For BDA, set to WDM.
|
|
|
|
# Generate .SYM and .PDB (map) files. These files map names to addresses.
|
|
# Required to debug on Win9x.
|
|
USE_MAPSYM=1
|
|
|
|
# Point to the header files that the sample source requires.
|
|
INCLUDES= \
|
|
$(DDK_INC_PATH); \
|
|
$(DDK_INC_PATH)\wdm; \
|
|
$(SDK_INC_PATH); \
|
|
$(SDK_PATH)\AMovie\Inc; \
|
|
$(INCLUDES)
|
|
|
|
# Point to the library files that the sample source requires.
|
|
TARGETLIBS= \
|
|
$(DDK_LIB_PATH)\ks.lib \
|
|
$(DDK_LIB_PATH)\ksguid.lib \
|
|
$(DDK_LIB_PATH)\BdaSup.lib \
|
|
$(DDK_LIB_PATH)\usbd.lib
|
|
|
|
# The following macros are used with the Soft-ICE debugging tool.
|
|
!ifdef BUILD_SOFTICE_SYMBOLS
|
|
TARGETPATHEX=$(TARGETPATH)\$(TARGET_DIRECTORY)
|
|
|
|
NTTARGETFILES=$(TARGETPATH)\$(TARGETNAME).dbg
|
|
|
|
NTTARGETFILES=$(TARGETPATHEX)\$(TARGETNAME).nms $(NTTARGETFILES)
|
|
!endif
|
|
|
|
# Source files that must be compiled.
|
|
SOURCES = SkyWalker1TunerPin.cpp \
|
|
SkyWalker1AntennaPin.cpp \
|
|
SkyWalker1CaptureFilter.cpp \
|
|
SkyWalker1CaptureFilterDefinitions.cpp \
|
|
SkyWalker1CapturePin.cpp \
|
|
SkyWalker1Control.cpp \
|
|
SkyWalker1Device.cpp \
|
|
SkyWalker1Main.cpp \
|
|
SkyWalker1PnP.cpp \
|
|
SkyWalker1TransportPin.cpp \
|
|
SkyWalker1TunerFilter.cpp \
|
|
SkyWalker1TunerFilterDefinitions.cpp \
|
|
SkyWalker1USB.cpp \
|
|
SkyWalker1Utility.cpp
|
|
|