Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.01 KB

Makefile.am

File metadata and controls

44 lines (35 loc) · 1.01 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
3
4
5
## Makefile.am for the main SDL library
# These are the subdirectories that are always built
CORE_SUBDIRS = \
Feb 6, 2006
Feb 6, 2006
6
main stdlib
Apr 26, 2001
Apr 26, 2001
7
8
9
# These are the subdirectories which may be built
EXTRA_SUBDIRS = \
Feb 9, 2006
Feb 9, 2006
10
audio video events joystick cdrom thread timer file cpuinfo hermes
Apr 26, 2001
Apr 26, 2001
11
12
13
14
15
16
17
18
19
20
21
22
# These are the subdirectories which will be built now
SUBDIRS = $(CORE_SUBDIRS) @SDL_EXTRADIRS@
# These are the subdirectories which will be distributed with "make dist"
DIST_SUBDIRS = $(CORE_SUBDIRS) $(EXTRA_SUBDIRS)
# The SDL library target
lib_LTLIBRARIES = libSDL.la
libSDL_la_SOURCES = $(GENERAL_SRCS)
libSDL_la_LDFLAGS = \
Oct 6, 2003
Oct 6, 2003
23
-no-undefined \
Apr 26, 2001
Apr 26, 2001
24
25
26
27
-release $(LT_RELEASE) \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
libSDL_la_LIBADD = \
main/libarch.la \
Feb 6, 2006
Feb 6, 2006
28
stdlib/libstdlib.la \
Apr 26, 2001
Apr 26, 2001
29
30
31
32
@SDL_EXTRALIBS@ \
@SYSTEM_LIBS@
libSDL_la_DEPENDENCIES = \
main/libarch.la \
Feb 6, 2006
Feb 6, 2006
33
stdlib/libstdlib.la \
Apr 26, 2001
Apr 26, 2001
34
35
36
37
38
39
40
41
42
@SDL_EXTRALIBS@
# The SDL library sources
GENERAL_SRCS = \
SDL.c \
SDL_error.c \
SDL_error_c.h \
SDL_fatal.c \
SDL_fatal.h \
Aug 23, 2003
Aug 23, 2003
43
SDL_loadso.c