Subversion Repositories shark

Rev

Rev 494 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
494 giacomo 1
# PCI support from linux 2.6.0
2
 
3
ifndef BASE
4
BASE=../..
5
endif
6
 
7
include $(BASE)/config/config.mk
8
 
9
LIBRARY       = input
10
 
11
OBJS_PATH     = $(BASE)/drivers/input
12
 
518 mauro 13
OBJS = input.o serio/serio.o serio/i8042.o\
14
	mouse/psmouse-base.o mouse/logips2pp.o\
494 giacomo 15
	keyboard/atkbd.o\
16
	misc/pcspkr.o\
17
	gameport/gameport.o gameport/ns558.o\
18
	joystick/analog.o joystick/joydump.o\
518 mauro 19
	handler/evbug.o handler/keyboard.o\
20
	shark/shark_input.o shark/shark_keymap.o shark/shark_keyb.o
494 giacomo 21
 
22
OTHERINCL += -I$(BASE)/drivers/linuxc26/include
23
 
24
C_OPT += -D__KERNEL__
25
 
26
include $(BASE)/config/lib.mk
27
 
28
clean::
29
	rm -f $(OBJS)
30