File: Makefile

package info (click to toggle)
kernel-image-2.4.17-hppa 32.4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 156,356 kB
  • ctags: 442,585
  • sloc: ansic: 2,542,442; asm: 144,771; makefile: 8,468; sh: 3,097; perl: 2,578; yacc: 1,177; tcl: 577; lex: 352; awk: 251; lisp: 218; sed: 72
file content (70 lines) | stat: -rw-r--r-- 1,702 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#
# Makefile for the joystick drivers.
#

O_TARGET	:= js.o

# Objects that export symbols.

export-objs	:= serio.o gameport.o

# I-Force may need both USB and RS-232

ifeq ($(CONFIG_INPUT_IFORCE_232),m)
	ifeq ($(CONFIG_INPUT_IFORCE_USB),y)
		CONFIG_INPUT_IFORCE_USB := m
	endif
endif
ifeq ($(CONFIG_INPUT_IFORCE_USB),m)
	ifeq ($(CONFIG_INPUT_IFORCE_232),y)
		CONFIG_INPUT_IFORCE_232 := m
	endif
endif

# Object file lists.

obj-y	:=
obj-m	:=
obj-n	:=
obj-	:=

# Each configuration option enables a list of files.

obj-$(CONFIG_INPUT_GAMEPORT)	+= gameport.o
obj-$(CONFIG_INPUT_SERIO)	+= serio.o

obj-$(CONFIG_INPUT_SERPORT)	+= serport.o

obj-$(CONFIG_INPUT_NS558)	+= ns558.o
obj-$(CONFIG_INPUT_LIGHTNING)	+= lightning.o
obj-$(CONFIG_INPUT_PCIGAME)	+= pcigame.o
obj-$(CONFIG_INPUT_CS461X)	+= cs461x.o
obj-$(CONFIG_INPUT_EMU10K1)	+= emu10k1-gp.o

obj-$(CONFIG_INPUT_WARRIOR)	+= warrior.o
obj-$(CONFIG_INPUT_MAGELLAN)	+= magellan.o
obj-$(CONFIG_INPUT_SPACEORB)	+= spaceorb.o
obj-$(CONFIG_INPUT_SPACEBALL)	+= spaceball.o
obj-$(CONFIG_INPUT_STINGER)	+= stinger.o
obj-$(CONFIG_INPUT_IFORCE_232)	+= iforce.o
obj-$(CONFIG_INPUT_IFORCE_USB)	+= iforce.o

obj-$(CONFIG_INPUT_ANALOG)	+= analog.o
obj-$(CONFIG_INPUT_A3D)		+= a3d.o
obj-$(CONFIG_INPUT_ADI)		+= adi.o
obj-$(CONFIG_INPUT_COBRA)	+= cobra.o
obj-$(CONFIG_INPUT_GF2K)	+= gf2k.o
obj-$(CONFIG_INPUT_GRIP)	+= grip.o
obj-$(CONFIG_INPUT_INTERACT)	+= interact.o
obj-$(CONFIG_INPUT_TMDC)	+= tmdc.o
obj-$(CONFIG_INPUT_SIDEWINDER)	+= sidewinder.o

obj-$(CONFIG_INPUT_DB9)		+= db9.o
obj-$(CONFIG_INPUT_GAMECON)	+= gamecon.o
obj-$(CONFIG_INPUT_TURBOGRAFX)	+= turbografx.o

obj-$(CONFIG_INPUT_AMIJOY)	+= amijoy.o

# The global Rules.make.

include $(TOPDIR)/Rules.make