2000-06-20 20:43:54 +00:00
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Netscape 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/NPL/
|
|
|
|
#
|
|
|
|
# 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 mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape
|
|
|
|
# Communications Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
#
|
|
|
|
|
|
|
|
DEPTH = ../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
2000-06-25 22:39:51 +00:00
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
|
2001-12-18 09:14:29 +00:00
|
|
|
OSDIR = os2
|
2000-06-25 22:39:51 +00:00
|
|
|
else
|
2001-12-18 09:14:29 +00:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
|
|
|
OSDIR = win
|
|
|
|
else
|
2002-10-01 01:00:09 +00:00
|
|
|
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
OSDIR = mac
|
|
|
|
else
|
2002-10-09 01:25:42 +00:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),beos)
|
|
|
|
OSDIR = beos
|
|
|
|
else
|
2001-12-18 09:14:29 +00:00
|
|
|
OSDIR = unix
|
|
|
|
endif
|
2000-06-25 22:39:51 +00:00
|
|
|
endif
|
2002-10-01 01:00:09 +00:00
|
|
|
endif
|
2002-10-09 01:25:42 +00:00
|
|
|
endif
|
2000-06-20 20:43:54 +00:00
|
|
|
|
2002-06-17 17:09:57 +00:00
|
|
|
VPATH := $(srcdir) $(srcdir)/$(OSDIR)
|
2001-12-18 09:14:29 +00:00
|
|
|
|
2000-06-20 20:43:54 +00:00
|
|
|
MODULE = exthandler
|
|
|
|
LIBRARY_NAME = exthandler_s
|
2001-09-18 13:41:47 +00:00
|
|
|
REQUIRES = xpcom \
|
|
|
|
string \
|
2001-10-29 23:14:05 +00:00
|
|
|
unicharutil \
|
2001-09-18 13:41:47 +00:00
|
|
|
mimetype \
|
|
|
|
uriloader \
|
|
|
|
dom \
|
|
|
|
necko \
|
|
|
|
rdf \
|
|
|
|
webshell \
|
|
|
|
helperAppDlg \
|
|
|
|
plugin \
|
|
|
|
pref \
|
2002-02-20 08:00:29 +00:00
|
|
|
intl \
|
2002-08-12 19:23:22 +00:00
|
|
|
uconv \
|
2002-05-17 00:31:53 +00:00
|
|
|
windowwatcher \
|
2003-07-16 00:33:50 +00:00
|
|
|
history \
|
2001-09-18 13:41:47 +00:00
|
|
|
$(NULL)
|
2000-06-20 20:43:54 +00:00
|
|
|
|
2003-06-30 20:29:59 +00:00
|
|
|
ifdef MOZ_PHOENIX
|
2003-07-16 00:33:50 +00:00
|
|
|
REQUIRES += toolkitcomps
|
2003-06-30 20:29:59 +00:00
|
|
|
endif
|
|
|
|
|
2002-10-01 01:00:09 +00:00
|
|
|
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
REQUIRES += windowwatcher \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2000-06-26 20:18:21 +00:00
|
|
|
OSHELPER = nsOSHelperAppService.cpp
|
|
|
|
|
2002-10-01 01:00:09 +00:00
|
|
|
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
OSHELPER += nsInternetConfig.cpp \
|
2002-12-13 03:21:37 +00:00
|
|
|
nsInternetConfigService.cpp \
|
2002-10-01 01:00:09 +00:00
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2000-06-20 20:43:54 +00:00
|
|
|
EXPORTS = nsExternalHelperAppService.h \
|
2001-02-07 02:03:55 +00:00
|
|
|
nsExternalProtocolHandler.h \
|
2000-06-25 22:39:51 +00:00
|
|
|
$(OSDIR)/nsOSHelperAppService.h \
|
2000-06-22 06:24:50 +00:00
|
|
|
nsHelperAppRDF.h \
|
2000-06-20 20:43:54 +00:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
XPIDLSRCS = \
|
|
|
|
nsCExternalHandlerService.idl \
|
|
|
|
nsIExternalProtocolService.idl \
|
|
|
|
nsIExternalHelperAppService.idl \
|
|
|
|
$(NULL)
|
2002-10-01 01:00:09 +00:00
|
|
|
|
|
|
|
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
XPIDLSRCS += nsIInternetConfigService.idl
|
|
|
|
endif
|
2000-06-20 20:43:54 +00:00
|
|
|
|
|
|
|
CPPSRCS = \
|
|
|
|
nsExternalHelperAppService.cpp \
|
2001-02-07 02:03:55 +00:00
|
|
|
nsExternalProtocolHandler.cpp \
|
2000-06-26 20:18:21 +00:00
|
|
|
$(OSHELPER) \
|
2000-06-20 20:43:54 +00:00
|
|
|
$(NULL)
|
2000-06-25 22:39:51 +00:00
|
|
|
|
2001-12-18 09:14:29 +00:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
OS_LIBS += shell32.lib
|
2002-12-13 02:36:06 +00:00
|
|
|
GARBAGE += nsOSHelperAppService.cpp $(srcdir)/nsOSHelperAppService.cpp
|
2001-12-18 09:14:29 +00:00
|
|
|
endif
|
2000-06-25 22:39:51 +00:00
|
|
|
|
2000-06-20 20:43:54 +00:00
|
|
|
# we don't want the shared lib, but we want to force the creation of a static lib.
|
2001-06-18 22:10:38 +00:00
|
|
|
FORCE_STATIC_LIB = 1
|
2002-12-13 02:36:06 +00:00
|
|
|
SRCS_IN_OBJDIR = 1
|
2000-06-20 20:43:54 +00:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2002-12-13 02:36:06 +00:00
|
|
|
# the use of multiple VPATH dirs is broken in cygwin make
|
2002-06-17 17:09:57 +00:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
export:: $(OSDIR)/nsOSHelperAppService.cpp
|
2002-12-13 02:36:06 +00:00
|
|
|
$(INSTALL) $^ .
|
2002-06-17 17:09:57 +00:00
|
|
|
endif
|