Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1004 Bytes

Makefile.am

File metadata and controls

43 lines (34 loc) · 1004 Bytes
 
Apr 26, 2001
Apr 26, 2001
1
2
3
4
5
6
7
8
9
## Makefile.am for the main SDL library
# These are the subdirectories that are always built
CORE_SUBDIRS = \
main
# These are the subdirectories which may be built
EXTRA_SUBDIRS = \
Nov 18, 2003
Nov 18, 2003
10
audio video events joystick cdrom thread timer endian 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
28
29
30
31
32
33
34
35
36
37
38
39
40
-release $(LT_RELEASE) \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
libSDL_la_LIBADD = \
main/libarch.la \
@SDL_EXTRALIBS@ \
@SYSTEM_LIBS@
libSDL_la_DEPENDENCIES = \
main/libarch.la \
@SDL_EXTRALIBS@
# The SDL library sources
GENERAL_SRCS = \
SDL.c \
SDL_error.c \
SDL_error_c.h \
SDL_fatal.c \
SDL_fatal.h \
Mar 6, 2002
Mar 6, 2002
41
SDL_getenv.c \
Aug 23, 2003
Aug 23, 2003
42
SDL_loadso.c