# # 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@ VPATH = @srcdir@ include $(DEPTH)/config/autoconf.mk MODULE = xpcomdbus XPIDL_MODULE = xpcomdbus LIBRARY_NAME = xpcomdbus SHORT_LIBNAME = xpcomsmp IS_COMPONENT = 1 MODULE_NAME = nsDBUSModule # Ensure that the xpcom classes that we build # do not export themselves DEFINES += -DXPCOM_GLUE -DDEBUG `pkg-config dbus-1 --cflags` DBUS_LIBS = `pkg-config dbus-1 --libs` REQUIRES = string \ dom \ xmlextras \ xpcom \ $(NULL) CPPSRCS = \ nsDBus.cpp \ nsDBusInterface.cpp \ nsDBusMessage.cpp \ nsDBusError.cpp \ nsDBusThreads.cpp \ nsDBusSignal.cpp \ nsDBusConnectionLoop.cpp \ nsDBusModule.cpp \ nsDBusXMLParser.cpp \ nsDBusArgument.cpp \ nsDBusMethod.cpp \ $(NULL) XPIDLSRCS = nsIDBUS.idl TESTCPPSRCS = nsTestDBUS.cpp CPPSRCS += $(TESTCPPSRCS) SIMPLE_PROGRAMS = $(TESTCPPSRCS:.cpp=$(BIN_SUFFIX)) include $(topsrcdir)/config/config.mk # separate libraries linked in. # $(DIST)/lib/$(LIB_PREFIX)xpcomglue.$(LIB_SUFFIX) EXTRA_DSO_LDOPTS = \ $(DBUS_LIBS) \ $(MOZ_COMPONENT_LIBS) \ $(NULL) LIBS = \ $(XPCOM_STANDALONE_GLUE_LDOPTS) \ $(DBUS_LIBS) \ $(NULL) # Needed to resolve __yylex (?) ifeq ($(OS_ARCH)$(OS_RELEASE),FreeBSD2) LIBS += -lpcap endif # Need to link with CoreFoundation on Mac ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT))) EXTRA_DSO_LDOPTS += \ $(TK_LIBS) \ $(NULL) LIBS += \ $(TK_LIBS) \ $(NULL) endif include $(topsrcdir)/config/rules.mk libs:: $(TARGETS) # $(INSTALL) $(srcdir)/xpconnect-dbus.html $(DIST)/bin/res/dbuss install:: $(TARGETS) # $(SYSINSTALL) $(IFLAGS1) $(srcdir)/xpconnect-dbus.html $(DESTDIR)$(mozappdir)/res/dbus