114 lines
3.1 KiB
Makefile
114 lines
3.1 KiB
Makefile
# 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 mozilla.org code.
|
|
#
|
|
# The Initial Developer of the Original Code is Sun Microsystems,
|
|
# Inc. Portions created by Sun are
|
|
# Copyright (C) 1999 Sun Microsystems, Inc. All
|
|
# Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
|
|
DEPTH = ../../..
|
|
topsrcdir = $(DEPTH)
|
|
srcdir = $(topsrcdir)/java/webclient/src_moz
|
|
VPATH = $(topsrcdir)/java/webclient/src_moz
|
|
|
|
JAVAHOME = $(JDKHOME)
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
LIBRARY_NAME = webclient
|
|
|
|
CPPSRCS = \
|
|
jni_util.cpp \
|
|
jni_util_export.cpp \
|
|
rdf_util.cpp \
|
|
dom_util.cpp \
|
|
nsActions.cpp \
|
|
CurrentPageImpl.cpp \
|
|
HistoryImpl.cpp \
|
|
BookmarksImpl.cpp \
|
|
WrapperFactoryImpl.cpp \
|
|
WindowControlImpl.cpp \
|
|
NavigationImpl.cpp \
|
|
CBrowserContainer.cpp \
|
|
NativeEventThread.cpp \
|
|
RDFEnumeration.cpp \
|
|
RDFTreeNode.cpp \
|
|
ISupportsPeer.cpp \
|
|
nsSetupRegistry.cpp \
|
|
$(NULL)
|
|
|
|
|
|
EXTRA_DSO_LDOPTS = \
|
|
-L$(DIST)/bin \
|
|
-L$(DIST)/lib \
|
|
$(EXTRA_DSO_LIBS) \
|
|
$(MOZ_COMPONENT_LIBS) \
|
|
$(MOZ_JS_LIBS) \
|
|
$(NULL)
|
|
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
INCLUDES = -I$(JDKHOME)/include -I$(JDKHOME)/solaris/include -I$(DIST)/include $(DEPTH)/widget/src/gtk
|
|
#CXXFLAGS += $(MOZ_GTK_CFLAGS)
|
|
#CXXDEFS += -D_REENTRANT -DXP_UNIX -DNS_DEBUG -DDEBUG_RAPTOR_CANVAS
|
|
#CFLAGS += $(MOZ_GTK_CFLAGS)
|
|
|
|
|
|
JAVAH_CLS= \
|
|
"-o BookmarksImpl.h org.mozilla.webclient.wrapper_native.BookmarksImpl" \
|
|
"-o CurrentPageImpl.h org.mozilla.webclient.wrapper_native.CurrentPageImpl" \
|
|
"-o HistoryImpl.h org.mozilla.webclient.wrapper_native.HistoryImpl" \
|
|
"-o WrapperFactoryImpl.h org.mozilla.webclient.wrapper_native.WrapperFactoryImpl" \
|
|
"-o NavigationImpl.h org.mozilla.webclient.wrapper_native.NavigationImpl" \
|
|
"-o RDFEnumeration.h org.mozilla.webclient.wrapper_native.RDFEnumeration" \
|
|
"-o RDFTreeNode.h org.mozilla.webclient.wrapper_native.RDFTreeNode" \
|
|
"-o ISupportsPeer.h org.mozilla.webclient.wrapper_native.ISupportsPeer" \
|
|
"-o WindowControlImpl.h org.mozilla.webclient.wrapper_native.WindowControlImpl" \
|
|
"-o NativeEventThread.h org.mozilla.webclient.wrapper_native.NativeEventThread" \
|
|
$(NULL)
|
|
|
|
JAVAH_FILES=\
|
|
BookmarksImpl.h \
|
|
CurrentPageImpl.h \
|
|
HistoryImpl.h \
|
|
WrapperFactoryImpl.h \
|
|
NavigationImpl.h \
|
|
RDFEnumeration.h \
|
|
RDFTreeNode.h \
|
|
ISupportsPeer.h \
|
|
WindowControlImpl.h \
|
|
NativeEventThread.h \
|
|
$(NULL)
|
|
|
|
JAVAH_PROG=$(JDKHOME)/bin/javah
|
|
JAVAH_FLAGS=-jni -classpath $(CLASSPATH):$(JAVA_DESTPATH)
|
|
|
|
export:: $(JAVAH_FILES)
|
|
|
|
$(JAVAH_FILES):
|
|
@for c in $(JAVAH_CLS); do \
|
|
echo $(JAVAH_PROG) $(JAVAH_FLAGS) $$c; \
|
|
$(JAVAH_PROG) $(JAVAH_FLAGS) $$c; \
|
|
done
|
|
|
|
# $(JAVAH_PROG) $(JAVAH_FLAGS) $$c \
|
|
|
|
clobber_all::
|
|
rm -f $(JAVAH_FILES)
|
|
rm -f nsSetupRegistry.cpp
|
|
|