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

« back to all changes in this revision

Viewing changes to src/metaflac/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
1
#  metaflac - Command-line FLAC metadata editor
2
 
#  Copyright (C) 2000,2001  Josh Coalson
 
2
#  Copyright (C) 2000,2001,2002,2003  Josh Coalson
3
3
#
4
4
#  This program is free software; you can redistribute it and/or
5
5
#  modify it under the terms of the GNU General Public License
19
19
# GNU makefile
20
20
#
21
21
 
 
22
topdir = ../..
 
23
 
22
24
PROGRAM_NAME = metaflac
23
 
INCLUDES     = -I./include -I../../include
24
 
LIBS         = 
25
 
 
26
 
OBJS = \
27
 
        main.o
28
 
 
29
 
include ../../build/exe.mk
 
25
INCLUDES     = -I./include -I$(topdir)/include
 
26
LIBS         = -lgrabbag -lFLAC -lgain_analysis -lgetopt -lutf8 -lm
 
27
 
 
28
SRCS_C = \
 
29
        main.c \
 
30
        operations.c \
 
31
        operations_shorthand_cuesheet.c \
 
32
        operations_shorthand_seektable.c \
 
33
        operations_shorthand_streaminfo.c \
 
34
        operations_shorthand_vorbiscomment.c \
 
35
        options.c \
 
36
        usage.c \
 
37
        utils.c
 
38
 
 
39
include $(topdir)/build/exe.mk
30
40
 
31
41
# DO NOT DELETE THIS LINE -- make depend depends on it.