~ubuntu-branches/ubuntu/quantal/maildir-utils/quantal

« back to all changes in this revision

Viewing changes to app/tests/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2010-01-19 20:12:43 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100119201243-d8qmzgxgexhy1bs0
Tags: 0.6~beta1-1
* new upstream release 0.6-beta
  - that merges the several different programs under one binary mu
  - no sqlite storage is used anymore
* debian packaging changes:
  - debian/patches
    . remove all patches
  - remove debian/HOWTO (upstream document) it is completely outdated
  - debian/control:
    . adjust build-dep for gmime-2.4
    . remove build-dep on quilt and sqlite
    . adjust the description to new reality
  - debian/rules:
    . do not try to install doc files that are not present anymore
    . disable quilt adaptions
  - add debian/NEWS that explains that the separate programs are gone

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## Copyright (C) 2008 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
2
 
##
3
 
## This program is free software; you can redistribute it and/or modify it
4
 
## under the terms of the GNU General Public License as published by the
5
 
## Free Software Foundation; either version 3, or (at your option) any
6
 
## later version.
7
 
##
8
 
## This program is distributed in the hope that it will be useful,
9
 
## but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
## GNU General Public License for more details.
12
 
##
13
 
## You should have received a copy of the GNU General Public License
14
 
## along with this program; if not, write to the Free Software Foundation,
15
 
## Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  
16
 
 
17
 
include $(top_srcdir)/gtest.mk
18
 
 
19
 
INCLUDES=                                       \
20
 
        -I ${top_srcdir}/                       \
21
 
        $(MU_GLIB2_CFLAGS)      
22
 
 
23
 
LIBS=   $(MU_GLIB2_LIBS)                        \
24
 
        ${top_srcdir}/app/libmuapp.la           
25
 
 
26
 
noinst_PROGRAMS= $(TEST_PROGS) 
27
 
 
28
 
TEST_PROGS += test-mu-conf 
29
 
test_mu_conf_SOURCES = test-mu-conf.c
30
 
test_mu_conf_LDADD   = $(LIBS)          
31
 
 
32
 
TEST_PROGS += test-mu-app
33
 
test_mu_app_SOURCES = test-mu-app.c
34
 
test_mu_app_LDADD   = $(LIBS)           
35
 
 
36
 
TEST_PROGS += test-mu-util
37
 
test_mu_util_SOURCES = test-mu-util.c
38
 
test_mu_util_LDADD   = $(LIBS)          
39
 
 
40
 
 
41
 
EXTRA_DIST=\
42
 
        test.conf
43