Subversion Repositories shark

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
846 giacomo 1
# PCI support from linux 2.6.0
2
#_I386_SEMAPHORE_H
3
 
4
ifndef BASE
5
BASE=../..
6
endif
7
 
8
include $(BASE)/config/config.mk
9
 
10
LIBRARY       = usb
11
 
12
OBJS_PATH     = $(BASE)/demos/usb
13
 
14
OBJS = core/usb.o core/usb-debug.o core/hub.o core/hcd.o core/urb.o core/message.o \
15
	core/config.o core/file.o core/buffer.o core/driverfs.o core/hcd-pci.o\
16
        host/ohci-hcd.o host/ehci-hcd.o host/uhci-hcd.o \
17
	shark_glue/shark_usb.o\
18
	input/usbmouse.o input/usbkbd.o \
19
	media/pwc-if.o media/pwc-ctrl.o media/pwc-misc.o media/pwc-uncompress.o \
20
	input/hid-core.o input/hid-input.o serial/bus.o serial/generic.o \
21
	serial/usb-serial.o serial/pl2303.o serial/tty_io.o
22
 
23
OTHERINCL += -I$(BASE)/drivers/linuxc26/include -I./core -I./host
24
 
25
#
26
# add	-DCONFIG_USB_DEBUG to enable USB core debug messages
27
# 	-DCONFIG_USB_SERIAL_DEBUG to enable USB/serial converters debug messages
28
#
29
C_OPT += -D__KERNEL__  -DCONFIG_USB_HIDINPUT -DCONFIG_USB_SERIAL_PL2303 -DCONFIG_USB_DEBUG
30
 
31
include $(BASE)/config/lib.mk
32
 
33
clean::
34
	rm -f $(OBJS)