1## Process this file with automake to produce Makefile.in
2
3AUTOMAKE_OPTIONS = foreign
4SUBDIRS = . plugins
5
6INCLUDES = -I$(top_builddir)/include/ao -I$(top_srcdir)/include -I$(top_srcdir)/include/ao -DAO_PLUGIN_PATH=\"@plugindir@\"
7
8lib_LTLIBRARIES = libao.la
9
10if HAVE_WMM
11wmm=ao_wmm.c
12else
13wmm=
14endif
15
16libao_la_SOURCES = audio_out.c config.c ao_null.c ao_wav.c ao_au.c ao_raw.c ao_aixs.c $(wmm)
17libao_la_LDFLAGS = @LIBAO_LA_LDFLAGS@ -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
18if HAVE_LD_VERSION_SCRIPT
19  libao_la_LDFLAGS += -Wl,--version-script=$(top_srcdir)/src/ao.vers
20endif
21
22
23debug:
24	$(MAKE) all CFLAGS="@DEBUG@"
25
26profile:
27	$(MAKE) all CFLAGS="@PROFILE@"
28
29EXTRA_DIST = ao_wmm.c ao.vers
30