~ubuntu-branches/ubuntu/precise/enigmail/precise-security

« back to all changes in this revision

Viewing changes to embedding/components/build/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-11-12 16:36:01 UTC
  • mfrom: (0.12.15)
  • Revision ID: package-import@ubuntu.com-20121112163601-t8e8skdfi3ni9iqp
Tags: 2:1.4.6-0ubuntu0.12.04.1
* New upstream release v1.4.6
  - see LP: #1080212 for USN information
* Drop unneeded patches
  - remove debian/patches/correct-version-number.diff
  - remove debian/patches/dont_register_cids_multiple_times.diff
  - update debian/patches/series
* Support building in an objdir
  - update debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# This Source Code Form is subject to the terms of the Mozilla Public
 
2
# License, v. 2.0. If a copy of the MPL was not distributed with this
 
3
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
4
 
 
5
DEPTH           = @DEPTH@
 
6
topsrcdir       = @top_srcdir@
 
7
srcdir          = @srcdir@
 
8
VPATH           = @srcdir@
 
9
 
 
10
include $(DEPTH)/config/autoconf.mk
 
11
 
 
12
MODULE          = embedcomponents
 
13
LIBRARY_NAME    = embedcomponents
 
14
EXPORT_LIBRARY = 1
 
15
SHORT_LIBNAME   = embedcmp
 
16
IS_COMPONENT    = 1
 
17
MODULE_NAME     = embedcomponents
 
18
GRE_MODULE      = 1
 
19
LIBXUL_LIBRARY  = 1
 
20
 
 
21
CPPSRCS         = nsEmbeddingModule.cpp
 
22
 
 
23
SHARED_LIBRARY_LIBS = \
 
24
        ../windowwatcher/src/$(LIB_PREFIX)windowwatcher_s.$(LIB_SUFFIX) \
 
25
        ../appstartup/src/$(LIB_PREFIX)appstartupnotifier_s.$(LIB_SUFFIX) \
 
26
        ../find/src/$(LIB_PREFIX)find_s.$(LIB_SUFFIX) \
 
27
        ../webbrowserpersist/src/$(LIB_PREFIX)webbrowserpersist_s.$(LIB_SUFFIX) \
 
28
        ../commandhandler/src/$(LIB_PREFIX)commandhandler_s.$(LIB_SUFFIX) \
 
29
        $(NULL)
 
30
 
 
31
ifdef MOZ_XUL
 
32
ifdef NS_PRINTING
 
33
SHARED_LIBRARY_LIBS += \
 
34
        ../printingui/src/$(LIB_PREFIX)printingui_s.$(LIB_SUFFIX) \
 
35
        $(NULL)
 
36
endif
 
37
endif
 
38
 
 
39
LOCAL_INCLUDES  = \
 
40
        -I$(srcdir)/../windowwatcher/src  \
 
41
        -I$(srcdir)/../appstartup/src  \
 
42
        -I$(srcdir)/../find/src  \
 
43
        -I$(srcdir)/../webbrowserpersist/src  \
 
44
        -I$(srcdir)/../commandhandler/src \
 
45
        $(NULL)
 
46
 
 
47
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
 
48
LOCAL_INCLUDES += -I$(srcdir)/../printingui/src/os2 
 
49
endif
 
50
 
 
51
ifdef MOZ_PDF_PRINTING
 
52
LOCAL_INCLUDES += -I$(srcdir)/../printingui/src/unixshared 
 
53
endif
 
54
 
 
55
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
 
56
LOCAL_INCLUDES += -I$(srcdir)/../printingui/src/win 
 
57
endif
 
58
 
 
59
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
 
60
LOCAL_INCLUDES += -I$(srcdir)/../printingui/src/mac
 
61
endif
 
62
 
 
63
include $(topsrcdir)/config/rules.mk