annotate input/Makefile @ 21280:db66f5bdb5cd

Remove unnecessary variable indirection.
author diego
date Sun, 26 Nov 2006 22:53:57 +0000
parents 92b122592776
children ef59ac68c9b6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4418
8141d2c399e4 A new configurable input system and joystick support for this system
albeu
parents:
diff changeset
1
8141d2c399e4 A new configurable input system and joystick support for this system
albeu
parents:
diff changeset
2 include ../config.mak
8141d2c399e4 A new configurable input system and joystick support for this system
albeu
parents:
diff changeset
3
8141d2c399e4 A new configurable input system and joystick support for this system
albeu
parents:
diff changeset
4 LIBNAME = libinput.a
8141d2c399e4 A new configurable input system and joystick support for this system
albeu
parents:
diff changeset
5
19801
133f4d2f84c5 Move conditional compilation to the build system.
diego
parents: 19420
diff changeset
6 SRCS=input.c
133f4d2f84c5 Move conditional compilation to the build system.
diego
parents: 19420
diff changeset
7 ifeq ($(JOYSTICK),yes)
133f4d2f84c5 Move conditional compilation to the build system.
diego
parents: 19420
diff changeset
8 SRCS += joystick.c
133f4d2f84c5 Move conditional compilation to the build system.
diego
parents: 19420
diff changeset
9 endif
133f4d2f84c5 Move conditional compilation to the build system.
diego
parents: 19420
diff changeset
10 ifeq ($(LIRC),yes)
133f4d2f84c5 Move conditional compilation to the build system.
diego
parents: 19420
diff changeset
11 SRCS += lirc.c
133f4d2f84c5 Move conditional compilation to the build system.
diego
parents: 19420
diff changeset
12 endif
133f4d2f84c5 Move conditional compilation to the build system.
diego
parents: 19420
diff changeset
13
21259
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents: 21206
diff changeset
14 include ../mpcommon.mak