Skip to content

Latest commit

 

History

History
52 lines (46 loc) · 1.16 KB

Makefile.am

File metadata and controls

52 lines (46 loc) · 1.16 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
3
4
5
6
7
## Makefile.am for the SDL video library
noinst_LTLIBRARIES = libvideo.la
# Define which subdirectories need to be built
SUBDIRS = @VIDEO_SUBDIRS@
Sep 4, 2001
Sep 4, 2001
8
DIST_SUBDIRS = dummy x11 dga nanox fbcon directfb vgl svga ggi aalib \
Apr 26, 2001
Apr 26, 2001
9
wincommon windib windx5 \
May 29, 2003
May 29, 2003
10
maccommon macdsp macrom riscos quartz \
Aug 1, 2002
Aug 1, 2002
11
bwindow ps2gs photon cybergfx epoc picogui \
Jan 31, 2006
Jan 31, 2006
12
ataricommon xbios gem dc qtopia Xext wscons gapi \
Jan 19, 2006
Jan 19, 2006
13
ipod os2fslib
Apr 26, 2001
Apr 26, 2001
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
DRIVERS = @VIDEO_DRIVERS@
# Include the architecture-independent sources
COMMON_SRCS = \
SDL_RLEaccel.c \
SDL_RLEaccel_c.h \
SDL_blit.c \
SDL_blit.h \
SDL_blit_0.c \
SDL_blit_1.c \
SDL_blit_A.c \
SDL_blit_N.c \
SDL_bmp.c \
SDL_cursor.c \
SDL_cursor_c.h \
SDL_gamma.c \
SDL_glfuncs.h \
SDL_leaks.h \
SDL_memops.h \
SDL_pixels.c \
SDL_pixels_c.h \
SDL_surface.c \
SDL_stretch.c \
SDL_stretch_c.h \
SDL_sysvideo.h \
SDL_video.c \
SDL_yuv.c \
SDL_yuvfuncs.h \
SDL_yuv_sw.c \
SDL_yuv_sw_c.h \
SDL_yuv_mmx.c \
Aug 22, 2003
Aug 22, 2003
46
mmx.h \
Apr 26, 2001
Apr 26, 2001
47
48
49
50
51
52
blank_cursor.h \
default_cursor.h
libvideo_la_SOURCES = $(COMMON_SRCS)
libvideo_la_LIBADD = $(DRIVERS)
libvideo_la_DEPENDENCIES = $(DRIVERS)