~ubuntu-branches/ubuntu/hoary/flac/hoary

« back to all changes in this revision

Viewing changes to src/plugin_common/Makefile.lite

  • Committer: Bazaar Package Importer
  • Author(s): Matt Zimmerman
  • Date: 2004-04-16 15:14:31 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040416151431-eyloggqxpwbwpogz
Tags: 1.1.0-11
Ensure that libFLAC is linked with -lm on all architectures, and
regardless of whether nasm is present

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# GNU makefile
 
3
#
 
4
 
 
5
topdir = ../..
 
6
 
 
7
LIB_NAME = libplugin_common
 
8
INCLUDES = -I./include -I$(topdir)/include -I$(HOME)/local/include
 
9
DEFINES  = -DFLAC__HAS_ID3LIB -DID3LIB_MAJOR=3 -DID3LIB_MINOR=8 -DID3LIB_PATCH=0
 
10
 
 
11
SRCS_C = \
 
12
        canonical_tag.c \
 
13
        charset.c \
 
14
        dither.c \
 
15
        id3v1.c \
 
16
        id3v2.c \
 
17
        replaygain_synthesis.c \
 
18
        vorbiscomment.c
 
19
 
 
20
include $(topdir)/build/lib.mk
 
21
 
 
22
# DO NOT DELETE THIS LINE -- make depend depends on it.