Mercurial > sdl-ios-xcode
annotate src/Makefile.am @ 610:95433459fbd2
Date: Mon, 14 Apr 2003 22:08:27 +0100
From: Patrice Mandin
Subject: [SDL][PATCH] 2 patches for sdl
Here are 2 patches for SDL:
- One is to put the dummy video drivers at the end of the
video drivers list. It gave me problems, when
SDL_VIDEODRIVER is not set, and the dummy driver is used
instead of the platform's driver, just because it is
always available. So the dummy driver must always be at
the end of the list. I suppose picogui and dc video
drivers also don't work.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 15 Apr 2003 15:46:56 +0000 |
parents | fab1ddc4d7bf |
children | f0c696e476da |
rev | line source |
---|---|
0 | 1 |
2 ## Makefile.am for the main SDL library | |
3 | |
4 # These are the subdirectories that are always built | |
5 CORE_SUBDIRS = \ | |
6 main | |
7 | |
8 # These are the subdirectories which may be built | |
9 EXTRA_SUBDIRS = \ | |
10 audio video events joystick cdrom thread timer endian file hermes | |
11 | |
12 # These are the subdirectories which will be built now | |
13 SUBDIRS = $(CORE_SUBDIRS) @SDL_EXTRADIRS@ | |
14 | |
15 # These are the subdirectories which will be distributed with "make dist" | |
16 DIST_SUBDIRS = $(CORE_SUBDIRS) $(EXTRA_SUBDIRS) | |
17 | |
18 # The SDL library target | |
19 lib_LTLIBRARIES = libSDL.la | |
20 | |
21 libSDL_la_SOURCES = $(GENERAL_SRCS) | |
22 libSDL_la_LDFLAGS = \ | |
23 -release $(LT_RELEASE) \ | |
24 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) | |
25 libSDL_la_LIBADD = \ | |
26 main/libarch.la \ | |
27 @SDL_EXTRALIBS@ \ | |
28 @SYSTEM_LIBS@ | |
29 libSDL_la_DEPENDENCIES = \ | |
30 main/libarch.la \ | |
31 @SDL_EXTRALIBS@ | |
32 | |
33 # The SDL library sources | |
34 GENERAL_SRCS = \ | |
35 SDL.c \ | |
36 SDL_error.c \ | |
37 SDL_error_c.h \ | |
38 SDL_fatal.c \ | |
39 SDL_fatal.h \ | |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
40 SDL_getenv.c \ |
296
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
294
diff
changeset
|
41 SDL_loadso.c \ |
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
294
diff
changeset
|
42 SDL_loadso.h |
0 | 43 |