#
# Sources for the build.exe used within the build environments of the DDK
# Autor: Chi Tai, Dang
#        Copyrigth thesis at chi-tai dot info
# Project: Diploma thesis, university of applied sciences augsburg
#
#
TARGETNAME=tcan_usb
TARGETPATH=obj
TARGETTYPE=DRIVER

# maybe this is not necessary... causality...
LANGUAGE=USA

#
# This project is intended only for Windows XP-Systems
# so in order to facilitate later accomodations to Win9x-Plattforms
# these lines helps a little bit
#
!IF "$(DDK_TARGET_OS)" != "WinXP"
TARGETLIBS	=	$(DDK_LIB_PATH)\csq.lib 
USE_PDB=1
INCLUDES=$(DDK_INC_PATH)
!ENDIF

TARGETLIBS	=	$(TARGETLIBS) $(DDK_LIB_PATH)\usbd.lib
		
SOURCES=tcan_ioctl.c \
		tcan_bulk.c \
		tcan_com.c \
		tcan_int.c \
		tcan_usb.c \
		tcan_pnp.c \
		tcan_pwr.c \
		tcan_wmi.c \
		tcan_ldr.c \
		tcan_usb.rc 
