Make it possible to prefix mozilla dlls that conflict with system dlls.
This commit is contained in:
Родитель
fffe8cf2c6
Коммит
846235af9b
|
@ -42,7 +42,7 @@ LIBS = \
|
|||
$(TK_LIBS) \
|
||||
-lpref \
|
||||
-lsecfree \
|
||||
-ljs \
|
||||
-l$(MOZ_LIB_JS_PREFIX)js \
|
||||
-lxp \
|
||||
-lraptorbase \
|
||||
-lxpcom \
|
||||
|
|
|
@ -21,6 +21,10 @@ MOZILLA_CLIENT = 1
|
|||
NO_MDUPDATE = 1
|
||||
MOZ_NATIVE_NSPR = 1
|
||||
|
||||
MOZ_LIB_UTIL_PREFIX = moz
|
||||
MOZ_LIB_JS_PREFIX = moz
|
||||
MOZ_LIB_DBM_PREFIX = moz
|
||||
|
||||
MOZ_TOOLKIT = @MOZ_TOOLKIT@
|
||||
MOZ_SECURITY = @MOZ_SECURITY@
|
||||
MOZ_JAVA = @MOZ_JAVA@
|
||||
|
|
|
@ -25,7 +25,7 @@ CSRCS = db.c \
|
|||
nsres.c \
|
||||
$(NULL)
|
||||
|
||||
LIBRARY_NAME = mozdbm
|
||||
LIBRARY_NAME = $(MOZ_LIB_DBM_PREFIX)dbm
|
||||
|
||||
LOCAL_INCLUDES = -I$(srcdir)/../include
|
||||
|
||||
|
|
|
@ -28,10 +28,10 @@ CSRCS = lots.c
|
|||
|
||||
PROGRAM = lots
|
||||
|
||||
REQUIRES = mozdbm
|
||||
#REQUIRES = $(MOZ_LIB_DBM_PREFIX)dbm
|
||||
|
||||
LIBS = \
|
||||
-lmozdbm \
|
||||
-l$(MOZ_LIB_DBM_PREFIX)dbm \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
|
|
@ -56,12 +56,12 @@ LIBS = \
|
|||
-lxpcom \
|
||||
-lreg \
|
||||
-lpref \
|
||||
-ljs \
|
||||
-l$(MOZ_LIB_JS_PREFIX)js \
|
||||
-lsecfree \
|
||||
-limg \
|
||||
$(JPEG_LIBS) \
|
||||
$(PNG_LIBS) \
|
||||
-lmozutil \
|
||||
-l$(MOZ_LIB_UTIL_PREFIX)util \
|
||||
-lxp \
|
||||
$(NSPR_LIBS) \
|
||||
$(ZLIB_LIBS) \
|
||||
|
|
|
@ -52,7 +52,7 @@ LIBS = \
|
|||
-lsecfree \
|
||||
-lpref \
|
||||
-lxp \
|
||||
-ljs \
|
||||
-l$(MOZ_LIB_JS_PREFIX)js \
|
||||
-lxpcom \
|
||||
-lreg \
|
||||
$(TK_LIBS) \
|
||||
|
|
|
@ -42,7 +42,7 @@ LIBS = \
|
|||
$(TK_LIBS) \
|
||||
-lpref \
|
||||
-lsecfree \
|
||||
-ljs \
|
||||
-l$(MOZ_LIB_JS_PREFIX)js \
|
||||
-lxp \
|
||||
-lraptorbase \
|
||||
-lxpcom \
|
||||
|
|
|
@ -29,7 +29,7 @@ endif
|
|||
|
||||
DIRS += fdlibm
|
||||
|
||||
LIBRARY_NAME = js
|
||||
LIBRARY_NAME = $(MOZ_LIB_JS_PREFIX)js
|
||||
|
||||
ifeq ($(subst /,_,$(shell uname -s)),OS2)
|
||||
ifndef XCFLAGS
|
||||
|
|
|
@ -1,153 +0,0 @@
|
|||
#! gmake
|
||||
# The contents of this file are subject to the Netscape Public License
|
||||
# Version 1.0 (the "NPL"); you may not use this file except in
|
||||
# compliance with the NPL. You may obtain a copy of the NPL at
|
||||
# http://www.mozilla.org/NPL/
|
||||
#
|
||||
# Software distributed under the NPL is distributed on an "AS IS" basis,
|
||||
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
||||
# for the specific language governing rights and limitations under the
|
||||
# NPL.
|
||||
#
|
||||
# The Initial Developer of this code under the NPL is Netscape
|
||||
# Communications Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
||||
# Reserved.
|
||||
|
||||
DEPTH = ../../..
|
||||
topsrcdir = @top_srcdir@
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
LIBRARY_NAME = jsxpcom
|
||||
|
||||
ifeq ($(subst /,_,$(shell uname -s)),OS2)
|
||||
ifndef XCFLAGS
|
||||
OS2_IMPLIB=1
|
||||
LIBRARY = jsxpcom$(MOZ_BITS)$(VERSION_NUMBER).$(LIB_SUFFIX)
|
||||
DEF_FILE = jsxpcomos2$(VERSION_NUMBER).def
|
||||
EXTRA_LIBS = $(NSPR_LIBS) $(LIBNSJAVA)
|
||||
else
|
||||
EXTRA_LIBS = $(NSPR_LIBS) $(LIBNSJAVA) $(OBJDIR)/libjs.lib
|
||||
endif
|
||||
endif
|
||||
|
||||
MODULE = jsxpcom
|
||||
|
||||
REQUIRES = xpcom js
|
||||
|
||||
CSRCS = $(NULL)
|
||||
|
||||
CPPSRCS = jxext.cpp \
|
||||
jsContext.cpp \
|
||||
jsRuntime.cpp \
|
||||
jsScriptable.cpp \
|
||||
$(NULL)
|
||||
|
||||
PROGCSRCS = common.c \
|
||||
$(NULL)
|
||||
|
||||
PROGCPPSRCS = jsxpcom.cpp \
|
||||
$(NULL)
|
||||
|
||||
PROGOBJS = $(addprefix $(OBJDIR)/, $(PROGCPPSRCS:.cpp=.o)) \
|
||||
$(addprefix $(OBJDIR)/, $(PROGCSRCS:.c=.o)) \
|
||||
$(NULL)
|
||||
|
||||
EXPORTS = jsIExtension.h \
|
||||
jsIContext.h \
|
||||
jsIRuntime.h \
|
||||
jsIScript.h \
|
||||
jsIScriptable.h \
|
||||
$(NULL)
|
||||
|
||||
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
|
||||
|
||||
INCLUDES += -I$(PUBLIC)/xpcom -I$(PUBLIC)/js
|
||||
|
||||
PROGRAM = jsxpcom
|
||||
|
||||
# `libs' just does libs, `install' does programs
|
||||
LIBS_NEQ_INSTALL = 1
|
||||
|
||||
# XXX this is not XP
|
||||
LDFLAGS += -rdynamic
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
export::
|
||||
|
||||
libs:: $(SHARED_LIBRARY) $(LIBRARY)
|
||||
|
||||
install:: $(PROGRAM)
|
||||
|
||||
ifndef BUILD_OPT
|
||||
MOCHAFILE = 1
|
||||
endif
|
||||
|
||||
ifdef JSFILE
|
||||
DEFINES += -DJSFILE
|
||||
endif
|
||||
|
||||
ifdef JS_THREADSAFE
|
||||
DEFINES += -DJS_THREADSAFE
|
||||
endif
|
||||
|
||||
ifdef JS_NO_THIN_LOCKS
|
||||
DEFINES += -DJS_USE_ONLY_NSPR_LOCKS
|
||||
endif
|
||||
|
||||
ifdef JS_VERSION
|
||||
DEFINES += -DJS_VERSION=$(JS_VERSION)
|
||||
endif
|
||||
|
||||
ifeq ($(CPU_ARCH),sparc)
|
||||
|
||||
ifndef JS_NO_ULTRA
|
||||
ULTRA_OPTIONS := -xarch=v8plus,-DULTRA_SPARC
|
||||
ULTRA_OPTIONSCC := -DULTRA_SPARC
|
||||
else
|
||||
ULTRA_OPTIONS := -xarch=v8
|
||||
ULTRA_OPTIONSCC :=
|
||||
endif
|
||||
|
||||
ifeq ($(shell uname -m),sun4u)
|
||||
ASFLAGS += -Wa,$(ULTRA_OPTIONS),-P,-L,-D_ASM,-D__STDC__=0 $(ULTRA_OPTIONSCC)
|
||||
else
|
||||
ASFLAGS += -Wa,-xarch=v8,-P,-L,-D_ASM,-D__STDC__=0
|
||||
endif
|
||||
|
||||
endif # sparc
|
||||
|
||||
INCLUDES += -I$(srcdir)
|
||||
|
||||
ifndef NSBUILDROOT
|
||||
JSJAVA_STUBHEADERS = -I$(DEPTH)/sun-java/include/_gen \
|
||||
-I$(DEPTH)/sun-java/netscape/javascript/_jri \
|
||||
-I$(DEPTH)/sun-java/netscape/security/_jri
|
||||
else
|
||||
JSJAVA_STUBHEADERS = -I$(JRI_GEN_DIR) -I$(JDK_GEN_DIR)
|
||||
endif
|
||||
|
||||
JSJAVA_CFLAGS = -I$(DEPTH)/sun-java/md-include \
|
||||
-I$(DEPTH)/sun-java/include \
|
||||
$(JSJAVA_STUBHEADERS)
|
||||
|
||||
# NSPR_LIBS abstracts nspr version, etc. nicely.
|
||||
LDFLAGS += -L$(DIST)/bin -lxpcom -lreg -ljsxpcom -ljs $(NSPR_LIBS) -lm
|
||||
|
||||
ifeq ($(OS_ARCH), OSF1)
|
||||
LDFLAGS += -lc_r
|
||||
endif
|
||||
ifeq ($(OS_ARCH), SunOS)
|
||||
LDFLAGS += -lposix4 -ldl -lnsl -lsocket
|
||||
endif
|
||||
ifeq ($(OS_ARCH), Linux)
|
||||
LDFLAGS += -ldl
|
||||
endif
|
||||
|
||||
jsxpcom: $(PROGRAM)
|
||||
|
||||
.PHONY: jsxpcom$(BIN_SUFFIX)
|
|
@ -35,12 +35,12 @@ CFLAGS += -DJS_THREADSAFE -DJSFILE
|
|||
|
||||
LDFLAGS = \
|
||||
-L$(DIST)/bin \
|
||||
-ljs \
|
||||
-l$(MOZ_LIB_JS_PREFIX)js \
|
||||
-lxpcom \
|
||||
-lxpconnect \
|
||||
-lxpcmd \
|
||||
-lreg \
|
||||
-lmozutil \
|
||||
-l$(MOZ_LIB_UTIL_PREFIX)util \
|
||||
$(NSPR_LIBS) \
|
||||
$(NULL)
|
||||
|
||||
|
|
|
@ -50,10 +50,10 @@ LIBS = \
|
|||
-lpref \
|
||||
-lsecfree \
|
||||
-limg \
|
||||
-lmozutil \
|
||||
-l$(MOZ_LIB_UTIL_PREFIX)util \
|
||||
$(PNG_LIBS) \
|
||||
$(JPEG_LIBS) \
|
||||
-ljs \
|
||||
-l$(MOZ_LIB_JS_PREFIX)js \
|
||||
-lxpcom \
|
||||
-lreg \
|
||||
-lxp \
|
||||
|
|
|
@ -40,7 +40,7 @@ LIBS = \
|
|||
-limg \
|
||||
$(PNG_LIBS) \
|
||||
$(JPEG_LIBS) \
|
||||
-lmozutil \
|
||||
-l$(MOZ_LIB_UTIL_PREFIX)util \
|
||||
-lnetlib \
|
||||
-lfileurl \
|
||||
-lftpurl \
|
||||
|
@ -60,7 +60,7 @@ LIBS = \
|
|||
$(TK_LIBS) \
|
||||
-lpref \
|
||||
-lsecfree \
|
||||
-ljs \
|
||||
-l$(MOZ_LIB_JS_PREFIX)js \
|
||||
-lxpcom \
|
||||
-lreg \
|
||||
-lxp \
|
||||
|
|
|
@ -23,7 +23,7 @@ srcdir = @srcdir@
|
|||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
MODULE = util
|
||||
LIBRARY_NAME = mozutil
|
||||
LIBRARY_NAME = $(MOZ_LIB_UTIL_PREFIX)util
|
||||
|
||||
CSRCS = obs.c
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@ LOCAL_INCLUDES += -I../../include
|
|||
|
||||
LIBS = \
|
||||
-lcache \
|
||||
-lmozdbm \
|
||||
-l$(MOZ_LIB_DBM_PREFIX)dbm \
|
||||
-lnetlib \
|
||||
-lraptorbase \
|
||||
-lnetcache \
|
||||
|
@ -49,7 +49,7 @@ LIBS = \
|
|||
-lgmbase$(MOZ_TOOLKIT) \
|
||||
$(TK_LIBS) \
|
||||
-lpref \
|
||||
-ljs \
|
||||
-l$(MOZ_LIB_JS_PREFIX)js \
|
||||
-lsecfree \
|
||||
-lxpcom \
|
||||
-lxp \
|
||||
|
|
|
@ -49,10 +49,10 @@ LIBS = \
|
|||
-lreg \
|
||||
-lxpcom \
|
||||
-lpwcac \
|
||||
-lmozdbm \
|
||||
-l$(MOZ_LIB_DBM_PREFIX)dbm \
|
||||
-lxp \
|
||||
-lpref \
|
||||
-ljs \
|
||||
-l$(MOZ_LIB_JS_PREFIX)js \
|
||||
-lraptorbase \
|
||||
-lgmbase$(MOZ_TOOLKIT) \
|
||||
-lsecfree \
|
||||
|
|
|
@ -52,7 +52,7 @@ LIBS = \
|
|||
-lsecfree \
|
||||
-lpref \
|
||||
-lxp \
|
||||
-ljs \
|
||||
-l$(MOZ_LIB_JS_PREFIX)js \
|
||||
-lxpcom \
|
||||
-lreg \
|
||||
$(TK_LIBS) \
|
||||
|
|
|
@ -93,10 +93,10 @@ BASE_LIBS = \
|
|||
-lpref \
|
||||
$(ZLIB_LIBS) \
|
||||
-lreg \
|
||||
-ljs \
|
||||
-l$(MOZ_LIB_JS_PREFIX)js \
|
||||
-lxpcom \
|
||||
-lsecfree \
|
||||
-lmozutil \
|
||||
-l$(MOZ_LIB_UTIL_PREFIX)util \
|
||||
$(NULL)
|
||||
|
||||
GECKO_LIBS = \
|
||||
|
@ -135,7 +135,7 @@ NETLIB_LIBS = \
|
|||
-lnetwork \
|
||||
-lxp \
|
||||
-ljsurl \
|
||||
-lmozdbm \
|
||||
-l$(MOZ_LIB_DBM_PREFIX)dbm \
|
||||
-lpwcac \
|
||||
$(NULL)
|
||||
|
||||
|
|
|
@ -66,7 +66,7 @@ LIBS := \
|
|||
-limg \
|
||||
$(PNG_LIBS) \
|
||||
$(JPEG_LIBS) \
|
||||
-ljs \
|
||||
-l$(MOZ_LIB_JS_PREFIX)js \
|
||||
-ljsdom \
|
||||
-ljsurl \
|
||||
$(DIST)/lib/libjsdomcore_s.a \
|
||||
|
@ -83,16 +83,16 @@ LIBS := \
|
|||
-lremoturl \
|
||||
-lsecfree \
|
||||
-ltestdynamic \
|
||||
-lmozutil \
|
||||
-l$(MOZ_LIB_UTIL_PREFIX)util \
|
||||
-lxp \
|
||||
-lxpcom \
|
||||
-lmozutil \
|
||||
-l$(MOZ_LIB_UTIL_PREFIX)util \
|
||||
-lxp \
|
||||
-lxpcom \
|
||||
-lreg \
|
||||
$(ZLIB_LIBS) \
|
||||
-lraptorplugin \
|
||||
-lmozdbm \
|
||||
-l$(MOZ_LIB_DBM_PREFIX)dbm \
|
||||
$(TK_LIBS) \
|
||||
$(NSPR_LIBS) \
|
||||
$(NULL)
|
||||
|
|
|
@ -58,14 +58,14 @@ LIBS := \
|
|||
-lpref \
|
||||
-lsecfree \
|
||||
-lnetutil \
|
||||
-lmozutil \
|
||||
-l$(MOZ_LIB_UTIL_PREFIX)util \
|
||||
-limg \
|
||||
$(PNG_LIBS) \
|
||||
$(JPEG_LIBS) \
|
||||
-lraptorbase \
|
||||
-lxpcom \
|
||||
-lreg \
|
||||
-ljs \
|
||||
-l$(MOZ_LIB_JS_PREFIX)js \
|
||||
-lwidget$(MOZ_TOOLKIT) \
|
||||
-lxp \
|
||||
$(ZLIB_LIBS) \
|
||||
|
|
|
@ -46,13 +46,13 @@ NETLIB_LIBS = \
|
|||
-lnetwork \
|
||||
-lxp \
|
||||
-ljsurl \
|
||||
-lmozdbm \
|
||||
-l$(MOZ_LIB_DBM_PREFIX)dbm \
|
||||
-lpwcac \
|
||||
$(NULL)
|
||||
|
||||
LIBS = \
|
||||
-lpref \
|
||||
-ljs \
|
||||
-l$(MOZ_LIB_JS_PREFIX)js \
|
||||
-lsecfree \
|
||||
-lxp \
|
||||
-labouturl \
|
||||
|
@ -73,14 +73,14 @@ LIBS = \
|
|||
-lxpcom \
|
||||
-lreg \
|
||||
-ljsurl \
|
||||
-lmozdbm \
|
||||
-l$(MOZ_LIB_DBM_PREFIX)dbm \
|
||||
-lpwcac \
|
||||
-lgmbase$(MOZ_TOOLKIT) \
|
||||
$(TK_LIBS) \
|
||||
-limg \
|
||||
$(JPEG_LIBS) \
|
||||
$(PNG_LIBS) \
|
||||
-lmozutil \
|
||||
-l$(MOZ_LIB_UTIL_PREFIX)util \
|
||||
$(ZLIB_LIBS) \
|
||||
$(NSPR_LIBS) \
|
||||
$(NULL)
|
||||
|
|
|
@ -65,13 +65,13 @@ LIBS = \
|
|||
-ljsurl \
|
||||
-lraptorbase \
|
||||
-lsecfree \
|
||||
-ljs \
|
||||
-l$(MOZ_LIB_JS_PREFIX)js \
|
||||
$(JSJ_LIB) \
|
||||
-lpref \
|
||||
-limg \
|
||||
$(JPEG_LIBS) \
|
||||
$(PNG_LIBS) \
|
||||
-lmozutil \
|
||||
-l$(MOZ_LIB_UTIL_PREFIX)util \
|
||||
-lxp \
|
||||
-lxpcom \
|
||||
$(ZLIB_LIBS) \
|
||||
|
|
|
@ -1,232 +0,0 @@
|
|||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Netscape Public License
|
||||
# Version 1.0 (the "NPL"); you may not use this file except in
|
||||
# compliance with the NPL. You may obtain a copy of the NPL at
|
||||
# http://www.mozilla.org/NPL/
|
||||
#
|
||||
# Software distributed under the NPL is distributed on an "AS IS" basis,
|
||||
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
||||
# for the specific language governing rights and limitations under the
|
||||
# NPL.
|
||||
#
|
||||
# The Initial Developer of this code under the NPL is Netscape
|
||||
# Communications Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
||||
# Reserved.
|
||||
|
||||
DEPTH=../../..
|
||||
topsrcdir = @top_srcdir@
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
PROGRAM = xpviewer
|
||||
|
||||
|
||||
TOOLKIT_GFX_LIB = -lgfx$(MOZ_TOOLKIT)
|
||||
TOOLKIT_WIDGET_LIB = -lwidget$(MOZ_TOOLKIT)
|
||||
TOOLKIT_BASE_LIB = -lgmbase$(MOZ_TOOLKIT)
|
||||
|
||||
# Hardcoding dlopen()'s? This needs to get fixed.
|
||||
#
|
||||
TOOLKIT_CFLAGS := \
|
||||
-DWIDGET_DLL=\"libwidget$(MOZ_TOOLKIT).$(DLL_SUFFIX)\" \
|
||||
-DGFXWIN_DLL=\"libgfx$(MOZ_TOOLKIT).$(DLL_SUFFIX)\" \
|
||||
$(TK_CFLAGS)
|
||||
|
||||
|
||||
CPPSRCS = \
|
||||
nsFindDialog.cpp \
|
||||
nsSetupRegistry.cpp \
|
||||
nsUnixStubs.cpp \
|
||||
nsBrowserWindow.cpp \
|
||||
nsBrowserMain.cpp \
|
||||
nsViewerApp.cpp \
|
||||
nsXPBaseWindow.cpp \
|
||||
$(NULL)
|
||||
|
||||
ifdef MOZ_OJI
|
||||
JSJ_LIB = -ljsj
|
||||
endif
|
||||
|
||||
LIBS := \
|
||||
-L$(DIST)/bin \
|
||||
-lraptorbase \
|
||||
-lpref \
|
||||
-lraptorbase \
|
||||
$(TOOLKIT_WIDGET_LIB) \
|
||||
-lraptorgfx \
|
||||
$(TOOLKIT_GFX_LIB) \
|
||||
-lraptorhtml \
|
||||
$(DIST)/lib/libraptorhtmlforms_s.a \
|
||||
$(TOOLKIT_BASE_LIB) \
|
||||
-lraptorhtmlpars \
|
||||
-lraptorview \
|
||||
-lreg \
|
||||
-labouturl \
|
||||
-lfileurl \
|
||||
-lftpurl \
|
||||
-lgophurl \
|
||||
-lhttpurl \
|
||||
-lsockstuburl \
|
||||
-limg \
|
||||
$(JPEG_LIBS) \
|
||||
$(PNG_LIBS) \
|
||||
-ljs \
|
||||
-ljsdom \
|
||||
-ljsurl \
|
||||
$(DIST)/lib/libjsdomcore_s.a \
|
||||
$(JSJ_LIB) \
|
||||
-lmimetype \
|
||||
-lnetcache \
|
||||
-lnetcnvts \
|
||||
-lnetlib \
|
||||
-lnetutil \
|
||||
-lnetwork \
|
||||
-lpwcac \
|
||||
-lraptorwebwidget \
|
||||
-lreg \
|
||||
-lremoturl \
|
||||
-lsecfree \
|
||||
-lstubnj \
|
||||
-lstubsj \
|
||||
-ltestdynamic \
|
||||
-lmozutil \
|
||||
-lxp \
|
||||
-lxpcom \
|
||||
-lmozutil \
|
||||
-lxp \
|
||||
-lxpcom \
|
||||
$(ZLIB_LIBS) \
|
||||
-lraptorplugin \
|
||||
-lmozdbm \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/config.mk
|
||||
|
||||
CFLAGS += $(TOOLKIT_CFLAGS)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/test0.html $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/test1.html $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/test2.html $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/test3.html $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/test4.html $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/test5.html $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/test6.html $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/test7.html $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/test8.html $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/test8siz.html $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/test8sca.html $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/test8tab.html $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/test9.html $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/test9a.html $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/test9b.html $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/raptor.jpg $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/Anieyes.gif $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/gear1.gif $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/rock_gra.gif $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/../../../webshell/tests/viewer/samples/bg.jpg $(DIST)/bin/res/samples
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation00.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation01.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation02.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation03.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation04.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation05.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation06.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation07.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation08.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation09.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation10.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation11.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation12.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation13.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation14.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation15.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation16.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation17.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation18.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation19.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation20.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation21.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation22.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation23.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation24.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation25.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation26.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation27.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation28.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation29.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation30.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation31.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation32.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation33.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation34.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation35.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation36.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation37.gif $(DIST)/bin/res/throbber
|
||||
$(INSTALL) $(srcdir)/resources/throbber/LargeAnimation38.gif $(DIST)/bin/res/throbber
|
||||
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/DialogAddrIcon.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/DialogAddrIcon_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/DialogCompIcon.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/DialogCompIcon_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/DialogMailIcon.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/DialogMailIcon_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/DialogNavIcon.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/DialogNavIcon_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Back.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Back_dis.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Back_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Bookmarks.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Bookmarks_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Edit.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Forward.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Forward_dis.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Forward_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Home.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Home_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_HTab.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_HTab_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_LoadImages.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_LoadImages.mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Location.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Location_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_MiniAddr.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_MiniComp.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_MiniMail.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_MiniNav.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_MiniTab.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_MixSecurity.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_MixSecurity.mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Netscape.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Netscape_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_PersonalIcon.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Places.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Places_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Print.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Print_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Reload.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Reload_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Search.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Search_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Secure.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Secure_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Stop.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Stop.mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Stop_dis.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Stop_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Tab.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_TabSmall.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_TabSmall_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Tab_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Unsecure.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_Unsecure.mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_WhatsRelated.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/TB_WhatsRelated_mo.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/StatusBar-insecure.gif $(DIST)/bin/res/toolbar
|
||||
$(INSTALL) $(srcdir)/resources/toolbar/StatusBar-secure.gif $(DIST)/bin/res/toolbar
|
Загрузка…
Ссылка в новой задаче