Mercurial > sdl-ios-xcode
annotate src/video/Makefile.am @ 163:2dc7252dc53e
Removed SDL_blit_A.h (obsolete)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 04 Sep 2001 22:28:55 +0000 |
parents | b0ae59d0f3ee |
children | cb384ef627f6 |
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@ | |
75
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
73
diff
changeset
|
8 DIST_SUBDIRS = dummy x11 dga nanox fbcon vgl svga ggi aalib \ |
0 | 9 wincommon windib windx5 \ |
73
79d08fa05301
Oops, forgot the Quartz video directory
Sam Lantinga <slouken@lokigames.com>
parents:
71
diff
changeset
|
10 maccommon macdsp macrom quartz \ |
71
cb4d780b41b6
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
30
diff
changeset
|
11 bwindow ps2gs photon cybergfx |
0 | 12 |
13 DRIVERS = @VIDEO_DRIVERS@ | |
14 | |
15 # Include the architecture-independent sources | |
16 COMMON_SRCS = \ | |
17 SDL_RLEaccel.c \ | |
18 SDL_RLEaccel_c.h \ | |
19 SDL_blit.c \ | |
20 SDL_blit.h \ | |
21 SDL_blit_0.c \ | |
22 SDL_blit_1.c \ | |
23 SDL_blit_A.c \ | |
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) |