Mercurial > sdl-ios-xcode
annotate src/joystick/Makefile.am @ 716:f25e3334d583
SDL_JoystickInit: If malloc() fails, pretend no joysticks were detected.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Sat, 13 Sep 2003 02:20:32 +0000 |
parents | 550bccdf04bd |
children |
rev | line source |
---|---|
0 | 1 |
2 ## Makefile.am for the SDL joystick library | |
3 | |
4 noinst_LTLIBRARIES = libjoystick.la | |
5 | |
6 # Define which subdirectories need to be built | |
7 SUBDIRS = @JOYSTICK_SUBDIRS@ | |
630
550bccdf04bd
Added initial support for RISC OS (thanks Peter Naulls!)
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
8 DIST_SUBDIRS = dummy amigaos beos bsd darwin dc linux macos mint riscos win32 |
0 | 9 |
10 DRIVERS = @JOYSTICK_DRIVERS@ | |
11 | |
12 # Include the architecture-independent sources | |
13 COMMON_SRCS = \ | |
14 SDL_joystick.c \ | |
15 SDL_joystick_c.h \ | |
16 SDL_sysjoystick.h | |
17 | |
18 libjoystick_la_SOURCES = $(COMMON_SRCS) | |
19 libjoystick_la_LIBADD = $(DRIVERS) | |
20 libjoystick_la_DEPENDENCIES = $(DRIVERS) |