~ubuntu-branches/ubuntu/precise/libgadu/precise-updates

« back to all changes in this revision

Viewing changes to .pc/debian-changes-1:1.11.0-2/test/automatic/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Marcin Owsiany
  • Date: 2011-07-06 21:02:45 UTC
  • Revision ID: james.westby@ubuntu.com-20110706210245-7xhtm5tbt69bkwif
Tags: 1:1.11.0-2
* Cherry-picked a fix for the pkgconfig file, to not require linking to
* gnutls. Closes: #632584

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
TESTS = convert message2 message1 $(OPTIONAL_TESTS_GLIBC) $(OPTIONAL_TESTS_PERL)
 
2
check_PROGRAMS = convert message2 message1 $(OPTIONAL_TESTS_GLIBC) $(OPTIONAL_TESTS_PERL)
 
3
EXTRA_PROGRAMS = convert message2 message1 connect packet resolver protocol
 
4
 
 
5
CFLAGS = -Wall -ggdb -DGG_IGNORE_DEPRECATED
 
6
 
 
7
protocol_SOURCES = protocol.c
 
8
nodist_protocol_SOURCES = script/script.c
 
9
protocol_CFLAGS = -Iscript
 
10
protocol_LDADD = $(top_builddir)/src/libgadu.la
 
11
 
 
12
convert_SOURCES = convert.c $(top_builddir)/src/encoding.c
 
13
 
 
14
message1_SOURCES = message1.c
 
15
 
 
16
message2_SOURCES = message2.c $(top_builddir)/src/message.c
 
17
message2_LDADD = @LIBXML2_LIBS@
 
18
message2_CFLAGS = @LIBXML2_CFLAGS@
 
19
 
 
20
connect_LDADD = $(top_builddir)/src/libgadu.la
 
21
 
 
22
packet_LDADD = $(top_builddir)/src/libgadu.la
 
23
 
 
24
resolver_LDADD = $(top_builddir)/src/libgadu.la
 
25
 
 
26
EXTRA_DIST = protocol.txt connect.txt
 
27
 
 
28
SUBDIRS = script
 
29
 
 
30
script/script.c:       $(wildcard script/*.scr) script/compile
 
31
        $(PERL) script/compile script/*.scr > script/script.c
 
32
 
 
33
clean-local:
 
34
        rm -f *.html *.log *-valgrind
 
35
 
 
36
check-local:    $(check_PROGRAMS)
 
37
        for i in $(check_PROGRAMS); do ln -sf ../valgrind $${i}-valgrind; done