File: Makefile.am

package info (click to toggle)
libmp3splt 0.5.6-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,288 kB
  • ctags: 818
  • sloc: ansic: 14,675; sh: 9,225; makefile: 51
file content (35 lines) | stat: -rw-r--r-- 732 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
plugindir=$(libdir)/libmp3splt

plugin_LTLIBRARIES = 
INCLUDES =

#ccommon_LDFLAGS = -module -export-dynamic -avoid-version
common_LDFLAGS = -L../src -L../src/.libs -L/lib -no-undefined -lm -lmp3splt

#mp3 plugin
if MP3_PLUGIN

INCLUDES += @MAD_CFLAGS@
plugin_LTLIBRARIES += libsplt_mp3.la
libsplt_mp3_la_SOURCES = mp3.c mp3.h
libsplt_mp3_la_LDFLAGS = $(common_LDFLAGS) @MAD_LIBS@

if ID3TAG
INCLUDES += @ID3_CFLAGS@
libsplt_mp3_la_LIBADD = @ID3_LIBS@
else
INCLUDES += -DNO_ID3TAG
endif

endif

#OGG plugin
if OGG_PLUGIN

INCLUDES += @OGG_CFLAGS@ @VORBIS_CFLAGS@
plugin_LTLIBRARIES += libsplt_ogg.la
libsplt_ogg_la_SOURCES = ogg.c ogg.h
libsplt_ogg_la_LDFLAGS = $(common_LDFLAGS) @VORBISFILE_LIBS@ @VORBIS_LIBS@ @OGG_LIBS@ 

endif