2004-11-30 19:00:00 +00:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
2003-08-12 05:22:10 +00:00
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
|
|
|
#
|
|
|
|
# The Original Code is the Mozilla Browser code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Netscape Communications Corporation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2003
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
# Brian Ryner <bryner@brianryner.com>
|
2005-03-16 18:03:35 +00:00
|
|
|
# Benjamin Smedberg <benjamin@smedbergs.us>
|
2003-08-12 05:22:10 +00:00
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
|
2002-09-28 00:38:20 +00:00
|
|
|
DEPTH = ../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
2008-07-06 20:37:07 +00:00
|
|
|
include $(topsrcdir)/config/config.mk
|
2002-09-28 00:38:20 +00:00
|
|
|
|
2006-04-14 08:05:45 +00:00
|
|
|
# These component dirs are built for all apps (including suite)
|
2005-04-04 19:08:55 +00:00
|
|
|
|
|
|
|
ifdef MOZ_ENABLE_XREMOTE
|
|
|
|
DIRS += remote
|
|
|
|
endif
|
2007-06-19 18:51:09 +00:00
|
|
|
DIRS += \
|
|
|
|
urlformatter \
|
|
|
|
contentprefs \
|
2007-09-20 18:15:20 +00:00
|
|
|
microformats \
|
2008-04-22 23:37:00 +00:00
|
|
|
places \
|
2007-10-19 04:15:41 +00:00
|
|
|
apppicker \
|
2005-03-15 19:41:41 +00:00
|
|
|
filepicker \
|
2006-04-23 10:52:47 +00:00
|
|
|
console \
|
2008-03-25 00:38:03 +00:00
|
|
|
exthelper \
|
2006-05-12 10:34:13 +00:00
|
|
|
viewconfig \
|
2006-03-02 19:45:56 +00:00
|
|
|
typeaheadfind \
|
2008-03-29 07:12:13 +00:00
|
|
|
parentalcontrols \
|
2009-01-15 18:00:46 +00:00
|
|
|
passwordmgr \
|
2005-03-15 19:41:41 +00:00
|
|
|
$(NULL)
|
2006-05-03 03:56:19 +00:00
|
|
|
|
2007-05-02 20:16:31 +00:00
|
|
|
ifneq (,$(filter cocoa, $(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
TOOL_DIRS += alerts
|
|
|
|
else
|
|
|
|
DIRS += alerts
|
|
|
|
endif
|
|
|
|
|
2006-05-03 03:56:19 +00:00
|
|
|
ifdef MOZ_FEEDS
|
|
|
|
DIRS += feeds
|
|
|
|
endif
|
|
|
|
|
2008-03-24 17:18:38 +00:00
|
|
|
ifdef MOZ_HELP_VIEWER
|
|
|
|
DIRS += help
|
|
|
|
endif
|
|
|
|
|
2005-11-05 18:46:23 +00:00
|
|
|
ifdef NS_PRINTING
|
|
|
|
DIRS += printing
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef MOZ_VIEW_SOURCE
|
|
|
|
DIRS += viewsource
|
|
|
|
endif
|
|
|
|
|
2008-09-13 21:01:14 +00:00
|
|
|
ifndef MOZ_SUITE
|
|
|
|
ifndef MOZ_THUNDERBIRD
|
|
|
|
DIRS += search
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2008-09-24 16:54:14 +00:00
|
|
|
ifdef MOZ_XUL
|
|
|
|
DIRS += \
|
|
|
|
autocomplete \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifndef MOZ_THUNDERBIRD
|
2005-03-15 19:41:41 +00:00
|
|
|
DIRS += \
|
2006-01-25 04:54:07 +00:00
|
|
|
cookie \
|
2006-01-25 20:23:24 +00:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifdef MOZ_XUL
|
2008-09-24 16:54:14 +00:00
|
|
|
DIRS += satchel
|
2006-01-25 20:23:24 +00:00
|
|
|
endif # MOZ_XUL
|
2007-07-28 19:40:03 +00:00
|
|
|
|
2005-04-04 19:08:55 +00:00
|
|
|
endif # MOZ_THUNDERBIRD
|
2003-11-27 00:54:33 +00:00
|
|
|
|
2008-06-26 01:12:25 +00:00
|
|
|
ifndef SUITE_USING_XPFE_DM
|
2006-08-14 22:36:15 +00:00
|
|
|
ifdef MOZ_RDF
|
2005-07-27 20:42:44 +00:00
|
|
|
DIRS += downloads
|
|
|
|
endif
|
2008-06-26 01:12:25 +00:00
|
|
|
endif # SUITE_USING_XPFE_DM
|
2005-07-27 20:42:44 +00:00
|
|
|
|
2006-05-04 20:36:16 +00:00
|
|
|
ifdef MOZ_URL_CLASSIFIER
|
|
|
|
DIRS += url-classifier
|
|
|
|
endif
|
|
|
|
|
2004-10-30 04:34:34 +00:00
|
|
|
DIRS += \
|
2005-01-17 18:50:18 +00:00
|
|
|
commandlines \
|
2004-10-30 04:34:34 +00:00
|
|
|
startup \
|
|
|
|
build \
|
|
|
|
$(NULL)
|
|
|
|
|
2005-01-17 18:50:18 +00:00
|
|
|
EXTRA_PP_COMPONENTS = nsDefaultCLH.js
|
|
|
|
|
2006-09-18 18:31:14 +00:00
|
|
|
ifeq ($(MOZ_BUILD_APP),camino)
|
2007-11-03 19:13:04 +00:00
|
|
|
DIRS += autocomplete/public
|
2007-11-13 15:09:11 +00:00
|
|
|
DIRS += downloads/public
|
2006-09-18 16:56:46 +00:00
|
|
|
endif
|
|
|
|
|
2002-09-28 00:38:20 +00:00
|
|
|
include $(topsrcdir)/config/rules.mk
|