1998-10-28 03:53:57 +00:00
|
|
|
#!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
|
|
|
|
|
1999-01-27 19:54:40 +00:00
|
|
|
DIRS = public
|
1998-10-28 03:53:57 +00:00
|
|
|
|
1999-01-27 19:54:40 +00:00
|
|
|
PROGRAM = viewer
|
1998-11-02 16:06:50 +00:00
|
|
|
|
1999-01-27 19:54:40 +00:00
|
|
|
EXPORT_RESOURCE_SAMPLES := \
|
|
|
|
$(wildcard $(srcdir)/samples/test*.html) \
|
1999-03-05 20:20:18 +00:00
|
|
|
$(wildcard $(srcdir)/samples/toolbarTest*.xul) \
|
1999-03-09 21:55:22 +00:00
|
|
|
$(wildcard $(srcdir)/samples/treeTest*.xul) \
|
|
|
|
$(wildcard $(srcdir)/samples/treeTest*.css) \
|
1999-03-05 20:20:18 +00:00
|
|
|
$(wildcard $(srcdir)/samples/xulTest.css) \
|
1999-05-28 21:55:33 +00:00
|
|
|
$(wildcard $(srcdir)/samples/aform.css) \
|
|
|
|
$(wildcard $(srcdir)/samples/bform.css) \
|
|
|
|
$(wildcard $(srcdir)/samples/cform.css) \
|
|
|
|
$(wildcard $(srcdir)/samples/mozform.css) \
|
|
|
|
$(wildcard $(srcdir)/samples/demoform.css) \
|
1999-06-16 22:20:29 +00:00
|
|
|
$(wildcard $(srcdir)/samples/slider*.xul) \
|
|
|
|
$(wildcard $(srcdir)/samples/scrollbar*.xul) \
|
1999-01-27 19:54:40 +00:00
|
|
|
$(srcdir)/resources/find.html \
|
|
|
|
$(srcdir)/resources/printsetup.html \
|
|
|
|
$(srcdir)/resources/image_props.html \
|
|
|
|
$(srcdir)/samples/raptor.jpg \
|
|
|
|
$(srcdir)/samples/Anieyes.gif \
|
|
|
|
$(srcdir)/samples/gear1.gif \
|
|
|
|
$(srcdir)/samples/rock_gra.gif \
|
|
|
|
$(srcdir)/samples/bg.jpg \
|
1999-04-26 18:42:15 +00:00
|
|
|
$(srcdir)/samples/checkboxTest.xul \
|
1999-04-07 00:48:51 +00:00
|
|
|
$(NULL)
|
1999-01-27 19:54:40 +00:00
|
|
|
|
|
|
|
EXPORT_RESOURCE_THROBBER := \
|
1999-04-07 03:50:05 +00:00
|
|
|
$(wildcard $(srcdir)/throbber/anim*.gif) \
|
1999-04-07 00:48:51 +00:00
|
|
|
$(NULL)
|
1999-01-27 19:54:40 +00:00
|
|
|
|
|
|
|
TOOLKIT_GFX_LIB := -lgfx$(MOZ_TOOLKIT)
|
|
|
|
TOOLKIT_WIDGET_LIB := -lwidget$(MOZ_TOOLKIT)
|
1999-01-26 07:48:13 +00:00
|
|
|
|
|
|
|
# Hardcoding dlopen()'s? This needs to get fixed.
|
|
|
|
#
|
1999-01-27 19:54:40 +00:00
|
|
|
TOOLKIT_CFLAGS := \
|
|
|
|
-DWIDGET_DLL=\"libwidget$(MOZ_TOOLKIT).$(DLL_SUFFIX)\" \
|
|
|
|
-DGFXWIN_DLL=\"libgfx$(MOZ_TOOLKIT).$(DLL_SUFFIX)\" \
|
|
|
|
$(TK_CFLAGS)
|
1999-01-26 07:48:13 +00:00
|
|
|
|
1998-11-02 16:06:50 +00:00
|
|
|
|
1999-01-27 19:54:40 +00:00
|
|
|
TOOLKIT_CPPSRCS_gtk := \
|
1998-11-03 15:48:45 +00:00
|
|
|
nsGTKMain.cpp \
|
|
|
|
nsGTKMenu.cpp
|
1998-11-02 16:06:50 +00:00
|
|
|
|
1999-01-27 19:54:40 +00:00
|
|
|
TOOLKIT_CPPSRCS_motif := \
|
1998-11-03 15:48:45 +00:00
|
|
|
nsMotifMenu.cpp \
|
1999-06-09 11:35:26 +00:00
|
|
|
nsMotifMain.cpp
|
1999-01-27 19:54:40 +00:00
|
|
|
|
1999-06-03 12:16:22 +00:00
|
|
|
TOOLKIT_CPPSRCS_photon := \
|
|
|
|
nsPhMain.cpp \
|
|
|
|
nsPhMenu.cpp
|
1999-06-09 11:35:26 +00:00
|
|
|
|
1999-04-10 15:28:21 +00:00
|
|
|
TOOLKIT_CPPSRCS_xlib := \
|
|
|
|
nsXlibMain.cpp
|
|
|
|
|
1999-01-27 19:54:40 +00:00
|
|
|
TOOLKIT_CPPSRCS := $(TOOLKIT_CPPSRCS_$(MOZ_TOOLKIT))
|
1998-11-02 16:06:50 +00:00
|
|
|
|
|
|
|
|
1999-02-02 17:37:19 +00:00
|
|
|
CPPSRCS = \
|
|
|
|
$(TOOLKIT_CPPSRCS) \
|
|
|
|
nsBaseDialog.cpp \
|
|
|
|
nsFindDialog.cpp \
|
|
|
|
nsXPBaseWindow.cpp \
|
|
|
|
nsTableInspectorDialog.cpp \
|
|
|
|
nsImageInspectorDialog.cpp \
|
|
|
|
nsPrintSetupDialog.cpp \
|
|
|
|
nsBrowserWindow.cpp \
|
|
|
|
nsEditorMode.cpp \
|
|
|
|
nsSetupRegistry.cpp \
|
|
|
|
nsViewerApp.cpp \
|
|
|
|
nsWebCrawler.cpp \
|
|
|
|
nsStubs.cpp \
|
1998-10-28 03:53:57 +00:00
|
|
|
$(NULL)
|
|
|
|
|
1998-11-02 13:31:43 +00:00
|
|
|
ifdef MOZ_OJI
|
|
|
|
JSJ_LIB = -ljsj
|
|
|
|
endif
|
|
|
|
|
1999-02-02 17:37:19 +00:00
|
|
|
BASE_LIBS = \
|
|
|
|
-lpref \
|
|
|
|
$(ZLIB_LIBS) \
|
|
|
|
-lreg \
|
1999-03-12 12:43:04 +00:00
|
|
|
-l$(MOZ_LIB_JS_PREFIX)js \
|
1999-02-02 17:37:19 +00:00
|
|
|
-lxpcom \
|
|
|
|
-lsecfree \
|
1999-03-12 12:43:04 +00:00
|
|
|
-l$(MOZ_LIB_UTIL_PREFIX)util \
|
1999-02-02 17:37:19 +00:00
|
|
|
$(NULL)
|
|
|
|
|
1999-05-06 19:35:59 +00:00
|
|
|
GECKO_LIBS = \
|
|
|
|
-lraptorwebwidget \
|
|
|
|
$(TOOLKIT_WIDGET_LIB) \
|
|
|
|
-lraptorgfx \
|
|
|
|
$(TOOLKIT_GFX_LIB) \
|
|
|
|
-lgfxps \
|
|
|
|
-lraptorhtmlpars \
|
|
|
|
-lexpat \
|
|
|
|
-lxmltok \
|
|
|
|
-ljsdom \
|
1999-02-02 17:37:19 +00:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
IMGLIB_LIBS = \
|
|
|
|
-limg \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
NETLIB_LIBS = \
|
|
|
|
-labouturl \
|
|
|
|
-lfileurl \
|
|
|
|
-lftpurl \
|
|
|
|
-lgophurl \
|
|
|
|
-lhttpurl \
|
|
|
|
-lremoturl \
|
|
|
|
-lsockstuburl \
|
|
|
|
-lmimetype \
|
|
|
|
-lnetcache \
|
|
|
|
-lnetcnvts \
|
|
|
|
-lnetlib \
|
|
|
|
-lnetwork \
|
|
|
|
-lxp \
|
|
|
|
-ljsurl \
|
1999-03-12 12:43:04 +00:00
|
|
|
-l$(MOZ_LIB_DBM_PREFIX)dbm \
|
1999-02-02 17:37:19 +00:00
|
|
|
-lpwcac \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
LIBS = \
|
|
|
|
$(GECKO_LIBS) \
|
|
|
|
$(NETLIB_LIBS) \
|
|
|
|
$(IMGLIB_LIBS) \
|
|
|
|
$(BASE_LIBS) \
|
|
|
|
$(JSJ_LIB) \
|
|
|
|
$(NSPR_LIBS) \
|
|
|
|
$(TK_LIBS) \
|
1998-10-28 03:53:57 +00:00
|
|
|
$(NULL)
|
|
|
|
|
1999-01-27 19:54:40 +00:00
|
|
|
include $(topsrcdir)/config/config.mk
|
1999-01-26 11:59:48 +00:00
|
|
|
|
1999-03-07 05:18:45 +00:00
|
|
|
CXXFLAGS += $(TOOLKIT_CFLAGS)
|
1998-10-28 03:53:57 +00:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
1999-04-01 20:36:29 +00:00
|
|
|
RUN_VIEWER_SCRIPT= $(srcdir)/mozilla-viewer.sh
|
1999-04-01 08:01:07 +00:00
|
|
|
|
|
|
|
install:: $(PROGRAM) $(RUN_VIEWER_SCRIPT)
|
1999-01-27 19:54:40 +00:00
|
|
|
$(INSTALL) $(EXPORT_RESOURCE_SAMPLES) $(DIST)/bin/res/samples
|
|
|
|
$(INSTALL) $(EXPORT_RESOURCE_THROBBER) $(DIST)/bin/res/throbber
|
1999-02-09 19:21:02 +00:00
|
|
|
$(INSTALL) $(srcdir)/resources/viewer.properties $(DIST)/bin/res
|
1999-04-01 08:01:07 +00:00
|
|
|
$(INSTALL) $(RUN_VIEWER_SCRIPT) $(DIST)/bin
|
|
|
|
|