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

« back to all changes in this revision

Viewing changes to mozilla/toolkit/components/typeaheadfind/src/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
# The contents of this file are subject to the Mozilla Public License
 
2
# Version 1.1 (the "License"); you may not use this file except in
 
3
# compliance with the License. You may obtain a copy of the License at
 
4
# http://www.mozilla.org/MPL/
 
5
 
 
6
# Software distributed under the License is distributed on an "AS IS"
 
7
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
 
8
# License for the specific language governing rights and limitations
 
9
# under the License.
 
10
 
 
11
# The Initial Developer of the Original Code is Aaron Leventhal.
 
12
# Portions created by Aaron Leventhal are Copyright (C) 2001
 
13
# Aaron Leventhal. All Rights Reserved.
 
14
 
 
15
# Alternatively, the contents of this file may be used under the terms
 
16
# of the GNU General Public License (the "GPL"), in which case the
 
17
# provisions of the GPL are applicable instead of those above.  If you
 
18
# wish to allow use of your version of this file only under the terms of
 
19
# the GPL and not to allow others to use your version of this file under
 
20
# the MPL, indicate your decision by deleting the provisions above and
 
21
# replace them with the notice and other provisions required by the
 
22
# GPL. If you do not delete the provisions above, a recipient may use
 
23
# your version of this file under either the MPL or the GPL.
 
24
 
 
25
# Contributor(s):
 
26
 
 
27
DEPTH = ../../../..
 
28
topsrcdir = @top_srcdir@
 
29
srcdir = @srcdir@
 
30
VPATH = @srcdir@
 
31
 
 
32
include $(DEPTH)/config/autoconf.mk
 
33
 
 
34
MODULE = fastfind
 
35
LIBRARY_NAME = fastfind_s
 
36
GRE_MODULE      = 1
 
37
FORCE_STATIC_LIB = 1
 
38
 
 
39
PACKAGE_FILE = typeaheadfind.pkg
 
40
 
 
41
REQUIRES = embedcomponents \
 
42
                  content \
 
43
                  docshell \
 
44
                  dom \
 
45
                  find \
 
46
                  intl \
 
47
                  gfx \
 
48
                  layout \
 
49
                  locale \
 
50
                  necko \
 
51
                  pref \
 
52
                  string \
 
53
                  unicharutil \
 
54
                  uriloader \
 
55
                  view \
 
56
                  webshell \
 
57
                  widget \
 
58
                  webbrwsr \
 
59
                  windowwatcher \
 
60
                  xpcom \
 
61
                  xuldoc \
 
62
                  $(NULL)
 
63
 
 
64
CPPSRCS =   \
 
65
  nsTypeAheadFind.cpp      \
 
66
  $(NULL)
 
67
 
 
68
include $(topsrcdir)/config/rules.mk
 
69