~ubuntu-branches/ubuntu/hardy/libfishsound/hardy-security

« back to all changes in this revision

Viewing changes to src/tests/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Jamie Wilkinson
  • Date: 2005-04-14 09:09:34 UTC
  • Revision ID: james.westby@ubuntu.com-20050414090934-3hub4x7n627qrmch
Tags: upstream-0.6.3
ImportĀ upstreamĀ versionĀ 0.6.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
AM_CFLAGS = -Wall -pedantic
 
4
 
 
5
INCLUDES = -I$(top_srcdir)/include
 
6
 
 
7
FISHSOUNDDIR = ../libfishsound
 
8
FISHSOUND_LIBS = $(FISHSOUNDDIR)/libfishsound.la $(VORBIS_LIBS) $(SPEEX_LIBS)
 
9
 
 
10
# Test programs
 
11
 
 
12
test: check
 
13
 
 
14
if FS_ENCODE
 
15
encode_tests = comment-test
 
16
endif
 
17
 
 
18
if FS_DECODE
 
19
if FS_ENCODE
 
20
encdec_tests = noop encdec-comments encdec-audio
 
21
endif
 
22
endif
 
23
 
 
24
TESTS = $(encode_tests) $(encdec_tests)
 
25
 
 
26
noinst_PROGRAMS = $(TESTS)
 
27
noinst_HEADERS = fs_tests.h
 
28
 
 
29
noop_SOURCES = noop.c
 
30
noop_LDADD = $(FISHSOUND_LIBS)
 
31
 
 
32
comment_test_SOURCES = comment-test.c
 
33
comment_test_LDADD = $(FISHSOUND_LIBS)
 
34
 
 
35
encdec_comments_SOURCES = encdec-comments.c
 
36
encdec_comments_LDADD = $(FISHSOUND_LIBS)
 
37
 
 
38
encdec_audio_SOURCES = encdec-audio.c
 
39
encdec_audio_LDADD = $(FISHSOUND_LIBS)