2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
## Makefile.am for the SDL audio library
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = libaudio.la
|
|
|
|
|
|
|
|
# Define which subdirectories need to be built
|
|
|
|
SUBDIRS = @AUDIO_SUBDIRS@
|
2003-07-22 14:01:21 +00:00
|
|
|
DIST_SUBDIRS = \
|
|
|
|
alsa \
|
|
|
|
arts \
|
|
|
|
baudio \
|
|
|
|
dc \
|
|
|
|
disk \
|
|
|
|
dma \
|
|
|
|
dmedia \
|
|
|
|
dsp \
|
|
|
|
esd \
|
2004-08-21 02:06:30 +00:00
|
|
|
macosx \
|
2003-07-22 14:01:21 +00:00
|
|
|
macrom \
|
|
|
|
mint \
|
|
|
|
mme \
|
|
|
|
nas \
|
|
|
|
nto \
|
|
|
|
openbsd \
|
|
|
|
paudio \
|
|
|
|
sun \
|
|
|
|
ums \
|
|
|
|
windib \
|
|
|
|
windx5
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
DRIVERS = @AUDIO_DRIVERS@
|
|
|
|
|
|
|
|
# Include the architecture-independent sources
|
|
|
|
COMMON_SRCS = \
|
|
|
|
SDL_audio.c \
|
|
|
|
SDL_audio_c.h \
|
|
|
|
SDL_audiocvt.c \
|
|
|
|
SDL_audiodev.c \
|
|
|
|
SDL_audiodev_c.h \
|
|
|
|
SDL_audiomem.c \
|
|
|
|
SDL_audiomem.h \
|
|
|
|
SDL_mixer.c \
|
|
|
|
SDL_sysaudio.h \
|
|
|
|
SDL_wave.c \
|
2002-11-09 06:13:28 +00:00
|
|
|
SDL_wave.h \
|
|
|
|
SDL_mixer_MMX.c \
|
2003-01-20 16:01:20 +00:00
|
|
|
SDL_mixer_MMX.h \
|
|
|
|
SDL_mixer_MMX_VC.c \
|
2003-06-03 19:35:10 +00:00
|
|
|
SDL_mixer_MMX_VC.h \
|
|
|
|
SDL_mixer_m68k.c \
|
|
|
|
SDL_mixer_m68k.h
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
libaudio_la_SOURCES = $(COMMON_SRCS)
|
|
|
|
libaudio_la_LIBADD = $(DRIVERS)
|
|
|
|
libaudio_la_DEPENDENCIES = $(DRIVERS)
|