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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
## Makefile.am for DirectFB/inputdrivers
if DBOX2REMOTE
DBOX2REMOTE_DIR = dbox2remote
endif
if ENABLE_DIVINE
DIVINE_DIR = divine
endif
if DREAMBOXREMOTE
DREAMBOXREMOTE_DIR = dreamboxremote
endif
if DYNAPRO_INPUT
DYNAPRO_INPUT_DIR = dynapro
endif
if ELO_INPUT
ELO_INPUT_DIR = elo
endif
if GUNZE_INPUT
GUNZE_INPUT_DIR = gunze
endif
if H3600_TS
H3600_TS_DIR = h3600_ts
endif
if INPUT_HUB
INPUT_HUB_DIR = input_hub
endif
if JOYSTICK_INPUT
JOYSTICK_INPUT_DIR = joystick
endif
if KEYBOARD_INPUT
KEYBOARD_INPUT_DIR = keyboard
endif
if LINUX_INPUT
LINUX_INPUT_DIR = linux_input
endif
if LIRC_INPUT
LIRC_INPUT_DIR = lirc
endif
if MUTOUCH_TS
MUTOUCH_TS_DIR = mutouch
endif
if ZYTRONIC_TS
ZYTRONIC_TS_DIR = zytronic
endif
if PENMOUNT_TS
PENMOUNT_TS_DIR = penmount
endif
if PS2MOUSE_INPUT
PS2MOUSE_INPUT_DIR = ps2mouse
endif
if SERIAL_MOUSE_INPUT
SERIALMOUSE_INPUT_DIR = serialmouse
endif
if SONYPI
SONYPI_DIR = sonypi
endif
if TSLIB
TSLIB_DIR = tslib
endif
if UCB1X00_TS
UCB1X00_TS_DIR = ucb1x00_ts
endif
if WM97XX_TS
WM97XX_TS_DIR = wm97xx_ts
endif
SUBDIRS = \
$(DBOX2REMOTE_DIR) \
$(DIVINE_DIR) \
$(DREAMBOXREMOTE_DIR) \
$(DYNAPRO_INPUT_DIR) \
$(ELO_INPUT_DIR) \
$(GUNZE_INPUT_DIR) \
$(H3600_TS_DIR) \
$(INPUT_HUB_DIR) \
$(JOYSTICK_INPUT_DIR) \
$(KEYBOARD_INPUT_DIR) \
$(LINUX_INPUT_DIR) \
$(LIRC_INPUT_DIR) \
$(MUTOUCH_TS_DIR) \
$(ZYTRONIC_TS_DIR) \
$(PENMOUNT_TS_DIR) \
$(PS2MOUSE_INPUT_DIR) \
$(SERIALMOUSE_INPUT_DIR) \
$(SONYPI_DIR) \
$(TSLIB_DIR) \
$(UCB1X00_TS_DIR) \
$(WM97XX_TS_DIR)
|