~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/modules/plugin/tools/tester/windows/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# The contents of this file are subject to the Netscape Public
 
3
# License Version 1.1 (the "License"); you may not use this file
 
4
# except in compliance with the License. You may obtain a copy of
 
5
# the License at http://www.mozilla.org/NPL/
 
6
#
 
7
# Software distributed under the License is distributed on an "AS
 
8
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
9
# implied. See the License for the specific language governing
 
10
# rights and limitations under the License.
 
11
#
 
12
# The Original Code is mozilla.org code.
 
13
#
 
14
# The Initial Developer of the Original Code is Netscape
 
15
# Communications Corporation.  Portions created by Netscape are
 
16
# Copyright (C) 1998 Netscape Communications Corporation. All
 
17
# Rights Reserved.
 
18
#
 
19
# Contributor(s): 
 
20
#   IBM Corp.
 
21
#
 
22
 
 
23
DEPTH           = ../../../../..
 
24
topsrcdir       = @top_srcdir@
 
25
srcdir          = @srcdir@
 
26
VPATH           = @srcdir@
 
27
 
 
28
include $(DEPTH)/config/autoconf.mk
 
29
 
 
30
MODULE          = plugin
 
31
LIBRARY_NAME    = npapi
 
32
RESFILE         = npapi.res
 
33
REQUIRES        = java \
 
34
                  plugin \
 
35
                  $(NULL)
 
36
 
 
37
CPPSRCS         = \
 
38
                winentry.cpp \
 
39
                dlgauto.cpp \
 
40
                dlgman.cpp \
 
41
                dlgtstr.cpp \
 
42
                guihlp.cpp \
 
43
                loadstatus.cpp \
 
44
                winutils.cpp \
 
45
                plugin.cpp \
 
46
                $(NULL)
 
47
 
 
48
# plugins should always be shared, even in the "static" build
 
49
FORCE_SHARED_LIB = 1
 
50
 
 
51
NO_DIST_INSTALL = 1
 
52
NO_INSTALL = 1
 
53
 
 
54
SHARED_LIBRARY_LIBS = \
 
55
                      $(DIST)/lib/$(LIB_PREFIX)plcommon_s.$(LIB_SUFFIX) \
 
56
                      $(NULL)
 
57
 
 
58
include $(topsrcdir)/config/rules.mk
 
59
 
 
60
LOCAL_INCLUDES += \
 
61
                  -I$(srcdir)/../include \
 
62
                  $(NULL)
 
63
 
 
64
EXTRA_DSO_LDOPTS += $(MOZ_COMPONENT_LIBS) \
 
65
                $(NULL)
 
66
 
 
67
install-plugin: $(SHARED_LIBRARY)
 
68
ifdef SHARED_LIBRARY
 
69
        $(INSTALL) $(SHARED_LIBRARY) $(DIST)/bin/plugins
 
70
endif
 
71
 
 
72
libs:: install-plugin
 
73
 
 
74
install:: $(SHARED_LIBRARY)
 
75
ifdef SHARED_LIBRARY
 
76
        $(SYSINSTALL) $(IFLAGS2) $< $(DESTDIR)$(mozappdir)/plugins
 
77
endif