~ubuntu-branches/ubuntu/feisty/flac/feisty-security

« back to all changes in this revision

Viewing changes to src/test_seeking/Makefile.lite

  • Committer: Bazaar Package Importer
  • Author(s): Tollef Fog Heen
  • Date: 2005-11-10 12:55:33 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20051110125533-2fmlml8wnb06r5vg
Tags: 1.1.2-3ubuntu1
* Merge with Debian
  - We did the C++ transition earlier than Debian, so add c2 suffix to
    liboggflac++ and libflac++

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#  test_seeking - Seeking tester for libFLAC and libOggFLAC
2
 
#  Copyright (C) 2004  Josh Coalson
 
2
#  Copyright (C) 2004,2005  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
20
20
#
21
21
 
22
22
topdir = ../..
 
23
libdir = $(topdir)/obj/$(BUILD)/lib
23
24
 
24
25
PROGRAM_NAME = test_seeking
25
 
INCLUDES     = -I../libFLAC/include -I$(topdir)/include
26
 
LIBS         = -lOggFLAC -lFLAC -logg -lm
 
26
 
 
27
INCLUDES = -I../libFLAC/include -I$(topdir)/include
 
28
 
 
29
ifeq ($(DARWIN_BUILD),yes)
 
30
EXPLICIT_LIBS = $(libdir)/libOggFLAC.a $(libdir)/libFLAC.a $(OGG_LIB_DIR)/libogg.a -lm
 
31
else
 
32
LIBS = -lOggFLAC -lFLAC -L$(OGG_LIB_DIR) -logg -lm
 
33
endif
 
34
 
27
35
SRCS_C = \
28
36
        main.c
29
37