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@
|
|
8 DIST_SUBDIRS = x11 dga fbcon svga ggi aalib \
|
|
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)
|