~ubuntu-branches/ubuntu/oneiric/lightning-extension/oneiric-security

« back to all changes in this revision

Viewing changes to mailnews/mime/cthandlers/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-11-08 10:00:06 UTC
  • mfrom: (1.3.8)
  • Revision ID: package-import@ubuntu.com-20121108100006-xpf89hktfitzuqc3
Tags: 1.9+build1-0ubuntu0.11.10.1
* New upstream stable release to support Thunderbird 17 (CALENDAR_1_9_BUILD1)
  - see LP: #1080212 for USN information

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# This Source Code Form is subject to the terms of the Mozilla Public
 
3
# License, v. 2.0. If a copy of the MPL was not distributed with this
 
4
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
5
 
 
6
DEPTH           = @DEPTH@
 
7
topsrcdir       = @top_srcdir@
 
8
srcdir          = @srcdir@
 
9
VPATH           = @srcdir@
 
10
 
 
11
include $(DEPTH)/config/autoconf.mk
 
12
 
 
13
ifdef MOZ_PSM
 
14
BUILD_SMIME=1
 
15
endif
 
16
 
 
17
PARALLEL_DIRS += glue vcard
 
18
 
 
19
# pgpmime depends on glue
 
20
DIRS += pgpmime
 
21
 
 
22
ifndef BUILD_SMIME
 
23
# smimestub always depends on glue, so always build that afterwards
 
24
DIRS += smimestub
 
25
endif
 
26
 
 
27
include $(topsrcdir)/config/rules.mk
 
28