1## Process this file with automake to produce Makefile.in
2
3AUTOMAKE_OPTIONS = foreign
4
5SUBDIRS = include .
6
7INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/include/share
8
9noinst_LTLIBRARIES = libreplaygain_synthesis.la
10
11libreplaygain_synthesis_la_SOURCES = replaygain_synthesis.c
12
13EXTRA_DIST = \
14	Makefile.lite \
15	replaygain_synthesis_static.dsp \
16	replaygain_synthesis_static.vcproj
17
18debug:
19	$(MAKE) all CFLAGS="@DEBUG@"
20
21profile:
22	$(MAKE) all CFLAGS="@PROFILE@"
23