Mercurial > sdl-ios-xcode
annotate src/video/Makefile.am @ 47:45b1c4303f87
Added initial support for Quartz video (thanks Darrell!)
author | Sam Lantinga <slouken@lokigames.com> |
---|---|
date | Thu, 07 Jun 2001 14:28:11 +0000 |
parents | 57bf11a5efd7 |
children | cb4d780b41b6 |
rev | line source |
---|---|
0 | 1 |
2 ## Makefile.am for the SDL video library | |
3 | |
4 noinst_LTLIBRARIES = libvideo.la | |
5 | |
6 # Define which subdirectories need to be built | |
7 SUBDIRS = @VIDEO_SUBDIRS@ | |
30
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
8 DIST_SUBDIRS = dummy x11 dga nanox fbcon svga ggi aalib \ |
0 | 9 wincommon windib windx5 \ |
10 maccommon macdsp macrom bwindow photon cybergfx | |
11 | |
12 DRIVERS = @VIDEO_DRIVERS@ | |
13 | |
14 # Include the architecture-independent sources | |
15 COMMON_SRCS = \ | |
16 SDL_RLEaccel.c \ | |
17 SDL_RLEaccel_c.h \ | |
18 SDL_blit.c \ | |
19 SDL_blit.h \ | |
20 SDL_blit_0.c \ | |
21 SDL_blit_1.c \ | |
22 SDL_blit_A.c \ | |
23 SDL_blit_A.h \ | |
24 SDL_blit_N.c \ | |
25 SDL_bmp.c \ | |
26 SDL_cursor.c \ | |
27 SDL_cursor_c.h \ | |
28 SDL_gamma.c \ | |
29 SDL_glfuncs.h \ | |
30 SDL_leaks.h \ | |
31 SDL_memops.h \ | |
32 SDL_pixels.c \ | |
33 SDL_pixels_c.h \ | |
34 SDL_surface.c \ | |
35 SDL_stretch.c \ | |
36 SDL_stretch_c.h \ | |
37 SDL_sysvideo.h \ | |
38 SDL_video.c \ | |
39 SDL_yuv.c \ | |
40 SDL_yuvfuncs.h \ | |
41 SDL_yuv_sw.c \ | |
42 SDL_yuv_sw_c.h \ | |
43 SDL_yuv_mmx.c \ | |
44 blank_cursor.h \ | |
45 default_cursor.h | |
46 | |
47 libvideo_la_SOURCES = $(COMMON_SRCS) | |
48 libvideo_la_LIBADD = $(DRIVERS) | |
49 libvideo_la_DEPENDENCIES = $(DRIVERS) |