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

« back to all changes in this revision

Viewing changes to mozilla/netwerk/socket/base/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
# vim: noexpandtab ts=4 sw=4
 
2
#
 
3
# The contents of this file are subject to the Netscape Public
 
4
# License Version 1.1 (the "License"); you may not use this file
 
5
# except in compliance with the License. You may obtain a copy of
 
6
# the License at http://www.mozilla.org/NPL/
 
7
#
 
8
# Software distributed under the License is distributed on an "AS
 
9
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
10
# implied. See the License for the specific language governing
 
11
# rights and limitations under the License.
 
12
#
 
13
# The Original Code is mozilla.org code.
 
14
#
 
15
# The Initial Developer of the Original Code is Netscape
 
16
# Communications Corporation.  Portions created by Netscape are
 
17
# Copyright (C) 1998 Netscape Communications Corporation. All
 
18
# Rights Reserved.
 
19
#
 
20
# Contributor(s): 
 
21
#
 
22
 
 
23
DEPTH           = ../../..
 
24
topsrcdir       = @top_srcdir@
 
25
srcdir          = @srcdir@
 
26
VPATH           = @srcdir@
 
27
 
 
28
include $(DEPTH)/config/autoconf.mk
 
29
 
 
30
MODULE          = necko
 
31
XPIDL_MODULE    = necko_socket
 
32
LIBRARY_NAME    = neckosocket_s
 
33
REQUIRES        = xpcom \
 
34
                  string \
 
35
                  $(NULL)
 
36
 
 
37
CPPSRCS         = \
 
38
                nsSocketProviderService.cpp \
 
39
                nsSOCKSSocketProvider.cpp \
 
40
                nsSOCKSIOLayer.cpp \
 
41
                $(NULL)
 
42
 
 
43
XPIDLSRCS       = \
 
44
                nsISocketProvider.idl \
 
45
                nsISocketProviderService.idl \
 
46
                nsISOCKSSocketInfo.idl \
 
47
                nsITransportSecurityInfo.idl \
 
48
                nsISSLSocketProvider.idl \
 
49
                nsISSLSocketControl.idl \
 
50
                $(NULL)
 
51
 
 
52
ifeq ($(OS_ARCH),WINNT)
 
53
NO_GEN_XPT=1
 
54
endif
 
55
 
 
56
# we don't want the shared lib, but we want to force the creation of a
 
57
# static lib.
 
58
FORCE_STATIC_LIB = 1
 
59
 
 
60
include $(topsrcdir)/config/rules.mk
 
61