equal
deleted
inserted
replaced
1 |
1 |
2 ## Makefile.am for the main SDL library |
2 ## Makefile.am for the main SDL library |
3 |
3 |
4 # These are the subdirectories that are always built |
4 # These are the subdirectories that are always built |
5 CORE_SUBDIRS = \ |
5 CORE_SUBDIRS = \ |
6 main |
6 main stdlib |
7 |
7 |
8 # These are the subdirectories which may be built |
8 # These are the subdirectories which may be built |
9 EXTRA_SUBDIRS = \ |
9 EXTRA_SUBDIRS = \ |
10 audio video events joystick cdrom thread timer endian file cpuinfo hermes |
10 audio video events joystick cdrom thread timer endian file cpuinfo hermes |
11 |
11 |
23 -no-undefined \ |
23 -no-undefined \ |
24 -release $(LT_RELEASE) \ |
24 -release $(LT_RELEASE) \ |
25 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) |
25 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) |
26 libSDL_la_LIBADD = \ |
26 libSDL_la_LIBADD = \ |
27 main/libarch.la \ |
27 main/libarch.la \ |
|
28 stdlib/libstdlib.la \ |
28 @SDL_EXTRALIBS@ \ |
29 @SDL_EXTRALIBS@ \ |
29 @SYSTEM_LIBS@ |
30 @SYSTEM_LIBS@ |
30 libSDL_la_DEPENDENCIES = \ |
31 libSDL_la_DEPENDENCIES = \ |
31 main/libarch.la \ |
32 main/libarch.la \ |
|
33 stdlib/libstdlib.la \ |
32 @SDL_EXTRALIBS@ |
34 @SDL_EXTRALIBS@ |
33 |
35 |
34 # The SDL library sources |
36 # The SDL library sources |
35 GENERAL_SRCS = \ |
37 GENERAL_SRCS = \ |
36 SDL.c \ |
38 SDL.c \ |
37 SDL_error.c \ |
39 SDL_error.c \ |
38 SDL_error_c.h \ |
40 SDL_error_c.h \ |
39 SDL_fatal.c \ |
41 SDL_fatal.c \ |
40 SDL_fatal.h \ |
42 SDL_fatal.h \ |
41 SDL_getenv.c \ |
|
42 SDL_loadso.c |
43 SDL_loadso.c |
43 |
44 |