1998-06-02 20:34:52 +00:00
|
|
|
#!gmake
|
1998-06-01 22:28:38 +00:00
|
|
|
#
|
|
|
|
# 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=../../..
|
|
|
|
|
1998-06-02 20:34:52 +00:00
|
|
|
include $(DEPTH)/config/config.mk
|
1998-06-01 22:28:38 +00:00
|
|
|
|
1998-11-02 16:06:50 +00:00
|
|
|
ifeq ($(USE_NGLAYOUT_GTK),1)
|
|
|
|
|
|
|
|
TOOLKIT_GFX_LIB = -lgfxgtk
|
|
|
|
TOOLKIT_WIDGET_LIB = -lwidgetgtk
|
|
|
|
TOOLKIT_BASE_LIB = -lgmbasegtk
|
|
|
|
|
|
|
|
TOOLKIT_CFLAGS = \
|
|
|
|
-DWIDGET_DLL=\"libwidgetgtk.so\" \
|
|
|
|
-DGFXWIN_DLL=\"libgfxgtk.so\"
|
|
|
|
|
|
|
|
TOOLKIT_CPPSRCS = \
|
|
|
|
nsGTKMain.cpp \
|
|
|
|
nsGTKMenu.cpp
|
|
|
|
|
|
|
|
TOOLKIT_INCLUDES = $(shell gtk-config --cflags)
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
TOOLKIT_GFX_LIB = -lgfxmotif
|
|
|
|
TOOLKIT_WIDGET_LIB = -lwidgetmotif
|
|
|
|
TOOLKIT_BASE_LIB = -lgmbasemotif
|
|
|
|
|
|
|
|
TOOLKIT_CFLAGS = \
|
|
|
|
-DWIDGET_DLL=\"libwidgetmotif.so\" \
|
|
|
|
-DGFXWIN_DLL=\"libgfxmotif.so\"
|
|
|
|
|
|
|
|
TOOLKIT_CPPSRCS = \
|
|
|
|
nsMotifMenu.cpp \
|
|
|
|
nsUnixMain.cpp
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
1998-06-01 22:28:38 +00:00
|
|
|
CPPSRCS = \
|
1998-11-02 16:06:50 +00:00
|
|
|
$(TOOLKIT_CPPSRCS) \
|
1998-10-26 18:07:14 +00:00
|
|
|
nsBrowserWindow.cpp \
|
|
|
|
nsEditorMode.cpp \
|
|
|
|
nsEditorInterfaces.cpp \
|
|
|
|
nsSetupRegistry.cpp \
|
|
|
|
nsViewerApp.cpp \
|
|
|
|
nsWebCrawler.cpp \
|
|
|
|
nsStubs.cpp \
|
1998-07-20 16:19:22 +00:00
|
|
|
$(NULL)
|
1998-06-02 20:34:52 +00:00
|
|
|
|
1998-11-02 16:06:50 +00:00
|
|
|
INCLUDES += \
|
|
|
|
-I$(PUBLIC)/raptor \
|
|
|
|
-I$(PUBLIC)/xpcom \
|
|
|
|
-I$(PUBLIC)/dom \
|
|
|
|
-I$(PUBLIC)/netlib \
|
|
|
|
-I$(PUBLIC)/js \
|
|
|
|
-I$(PUBLIC)/pref \
|
|
|
|
-I$(PUBLIC)/network \
|
|
|
|
-I$(PUBLIC)/xp
|
1998-06-02 20:34:52 +00:00
|
|
|
|
1998-11-02 13:31:43 +00:00
|
|
|
ifdef MOZ_OJI
|
|
|
|
JSJ_LIB = -ljsj
|
|
|
|
endif
|
|
|
|
|
1998-06-03 00:47:22 +00:00
|
|
|
EX_LIBS = \
|
1998-11-02 13:31:43 +00:00
|
|
|
-L$(DIST)/bin \
|
|
|
|
-lraptorbase \
|
|
|
|
-lpng \
|
|
|
|
-lpref \
|
|
|
|
-lraptorbase \
|
1998-11-02 16:06:50 +00:00
|
|
|
$(TOOLKIT_WIDGET_LIB) \
|
1998-11-02 13:31:43 +00:00
|
|
|
-lraptorgfx \
|
1998-11-02 16:06:50 +00:00
|
|
|
$(TOOLKIT_GFX_LIB) \
|
1998-11-02 13:31:43 +00:00
|
|
|
-lraptorhtml \
|
|
|
|
$(DIST)/lib/libraptorhtmlforms_s.a \
|
1998-11-02 16:06:50 +00:00
|
|
|
$(TOOLKIT_BASE_LIB) \
|
1998-11-02 13:31:43 +00:00
|
|
|
-lraptorhtmlpars \
|
|
|
|
-lraptorview \
|
|
|
|
-lreg \
|
|
|
|
-labouturl \
|
|
|
|
-lfileurl \
|
|
|
|
-lftpurl \
|
|
|
|
-lgophurl \
|
|
|
|
-lhttpurl \
|
|
|
|
-limg \
|
|
|
|
-ljpeg \
|
|
|
|
-ljs \
|
|
|
|
-ljsdom \
|
|
|
|
$(DIST)/lib/libjsdomcore_s.a \
|
|
|
|
$(JSJ_LIB) \
|
|
|
|
-lmimetype \
|
|
|
|
-lnetcache \
|
|
|
|
-lnetcnvts \
|
|
|
|
-lnetlib \
|
|
|
|
-lnetutil \
|
|
|
|
-lnetwork \
|
|
|
|
-lnspr21 \
|
|
|
|
-lplc21 \
|
|
|
|
-lplds21 \
|
|
|
|
-lraptorwebwidget \
|
|
|
|
-lreg \
|
|
|
|
-lremoturl \
|
|
|
|
-lsecfree \
|
|
|
|
-lstubnj \
|
|
|
|
-lstubsj \
|
|
|
|
-ltestdynamic \
|
|
|
|
-lutil \
|
|
|
|
-lxp \
|
|
|
|
-lxpcom \
|
|
|
|
-lzlib \
|
|
|
|
-lutil \
|
|
|
|
-lxp \
|
|
|
|
-lxpcom \
|
|
|
|
-lzlib \
|
|
|
|
-lraptorplugin \
|
1998-10-26 18:07:14 +00:00
|
|
|
$(NULL)
|
1998-06-05 20:51:11 +00:00
|
|
|
|
1998-11-04 11:47:21 +00:00
|
|
|
ifneq (,$(filter Linux SunOS,$(OS_ARCH)))
|
1998-10-14 22:35:56 +00:00
|
|
|
EX_LIBS += \
|
1998-11-02 13:31:43 +00:00
|
|
|
-lpwcac \
|
|
|
|
-ldbm \
|
1998-10-14 22:35:56 +00:00
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
1998-10-30 11:29:56 +00:00
|
|
|
PROGS = $(OBJDIR)/viewer
|
1998-06-03 00:47:22 +00:00
|
|
|
|
1998-07-20 16:38:04 +00:00
|
|
|
TARGETS = $(PROGS)
|
1998-06-03 00:47:22 +00:00
|
|
|
|
1998-06-01 22:28:38 +00:00
|
|
|
include $(DEPTH)/config/rules.mk
|
|
|
|
|
1998-11-02 16:25:37 +00:00
|
|
|
# Reasonable? defaults
|
|
|
|
TOOLKIT_LIB_PATH = -L/usr/X11R6/lib
|
|
|
|
TOOLKIT_LDFLAGS = -lXm -lXt -lXext -lX11
|
|
|
|
|
1998-06-05 17:14:01 +00:00
|
|
|
ifeq ($(OS_ARCH),Linux)
|
1998-11-02 16:25:37 +00:00
|
|
|
TOOLKIT_LIB_PATH = -L/usr/X11R6/lib
|
|
|
|
TOOLKIT_LDFLAGS = -lXm -lXp -lXt -lXext -lX11 -lSM -lICE
|
|
|
|
EXTRA_PRE_LDFLAGS = -rdynamic
|
|
|
|
EXTRA_POST_LDFLAGS =
|
1998-11-02 21:36:31 +00:00
|
|
|
POST_LINK_COMMAND = true
|
1998-11-02 16:25:37 +00:00
|
|
|
endif
|
|
|
|
|
1998-10-14 22:35:56 +00:00
|
|
|
ifeq ($(OS_ARCH),IRIX)
|
1998-11-03 09:27:37 +00:00
|
|
|
TOOLKIT_LIB_PATH =
|
1998-11-02 16:25:37 +00:00
|
|
|
TOOLKIT_LDFLAGS = -lXm -lXt -lX11
|
|
|
|
EXTRA_PRE_LDFLAGS = -woff 84,85
|
|
|
|
EXTRA_POST_LDFLAGS =
|
1998-11-02 21:36:31 +00:00
|
|
|
POST_LINK_COMMAND = true
|
1998-10-14 22:35:56 +00:00
|
|
|
endif
|
1998-11-02 16:25:37 +00:00
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),SunOS)
|
|
|
|
TOOLKIT_LIB_PATH = -L/usr/openwin/lib -L/usr/dt/lib
|
|
|
|
TOOLKIT_LDFLAGS = -lXm -lXt -lXext -lX11
|
|
|
|
EXTRA_PRE_LDFLAGS =
|
|
|
|
EXTRA_POST_LDFLAGS =
|
1998-11-02 21:36:31 +00:00
|
|
|
POST_LINK_COMMAND = true
|
1998-11-02 16:25:37 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),HP-UX)
|
|
|
|
TOOLKIT_LIB_PATH = -L/usr/lib/X11R5 -L/usr/lib/Motif1.2
|
|
|
|
TOOLKIT_LDFLAGS = -lXm -lXt -lX11
|
|
|
|
EXTRA_PRE_LDFLAGS =
|
|
|
|
EXTRA_POST_LDFLAGS = -lpthread
|
1998-11-02 16:36:06 +00:00
|
|
|
POST_LINK_COMMAND = chatr +s enable
|
1998-06-05 17:14:01 +00:00
|
|
|
endif
|
1998-06-03 00:47:22 +00:00
|
|
|
|
1998-11-02 16:25:37 +00:00
|
|
|
$(PROGS): $(OBJS) #$(EX_LIBS)
|
|
|
|
@$(MAKE_OBJDIR)
|
|
|
|
$(CCC) $(EXTRA_PRE_LDFLAGS) -o $@ $(OBJS) $(LDFLAGS) $(EX_LIBS) $(OS_LIBS) $(TOOLKIT_LIB_PATH) $(TOOLKIT_LDFLAGS) $(EXTRA_POST_LDFLAGS)
|
1998-11-02 16:36:06 +00:00
|
|
|
$(POST_LINK_COMMAND) $@
|
1998-11-02 16:25:37 +00:00
|
|
|
|
1998-06-03 00:47:22 +00:00
|
|
|
export::
|
1998-06-02 20:34:52 +00:00
|
|
|
|
1998-06-09 17:38:47 +00:00
|
|
|
install:: $(TARGETS)
|
|
|
|
$(INSTALL) $(PROGS) $(DIST)/bin
|
1998-06-09 18:01:15 +00:00
|
|
|
$(INSTALL) samples/test0.html $(DIST)/bin/res/samples
|
|
|
|
$(INSTALL) samples/test1.html $(DIST)/bin/res/samples
|
|
|
|
$(INSTALL) samples/test2.html $(DIST)/bin/res/samples
|
|
|
|
$(INSTALL) samples/test3.html $(DIST)/bin/res/samples
|
|
|
|
$(INSTALL) samples/test4.html $(DIST)/bin/res/samples
|
|
|
|
$(INSTALL) samples/test5.html $(DIST)/bin/res/samples
|
|
|
|
$(INSTALL) samples/test6.html $(DIST)/bin/res/samples
|
|
|
|
$(INSTALL) samples/test7.html $(DIST)/bin/res/samples
|
|
|
|
$(INSTALL) samples/test8.html $(DIST)/bin/res/samples
|
|
|
|
$(INSTALL) samples/test8siz.html $(DIST)/bin/res/samples
|
|
|
|
$(INSTALL) samples/test8sca.html $(DIST)/bin/res/samples
|
|
|
|
$(INSTALL) samples/test8tab.html $(DIST)/bin/res/samples
|
1998-06-18 00:47:18 +00:00
|
|
|
$(INSTALL) samples/test9.html $(DIST)/bin/res/samples
|
|
|
|
$(INSTALL) samples/test9a.html $(DIST)/bin/res/samples
|
1998-07-27 05:59:37 +00:00
|
|
|
$(INSTALL) samples/test9b.html $(DIST)/bin/res/samples
|
1998-06-09 18:01:15 +00:00
|
|
|
$(INSTALL) samples/raptor.jpg $(DIST)/bin/res/samples
|
|
|
|
$(INSTALL) samples/Anieyes.gif $(DIST)/bin/res/samples
|
|
|
|
$(INSTALL) samples/gear1.gif $(DIST)/bin/res/samples
|
|
|
|
$(INSTALL) samples/rock_gra.gif $(DIST)/bin/res/samples
|
1998-06-11 22:59:09 +00:00
|
|
|
$(INSTALL) samples/bg.jpg $(DIST)/bin/res/samples
|
1998-10-26 18:07:14 +00:00
|
|
|
$(INSTALL) samples/test10.html $(DIST)/bin/res/samples
|
1998-07-11 05:33:00 +00:00
|
|
|
$(INSTALL) throbber/anims00.gif $(DIST)/bin/res/throbber
|
|
|
|
$(INSTALL) throbber/anims01.gif $(DIST)/bin/res/throbber
|
|
|
|
$(INSTALL) throbber/anims02.gif $(DIST)/bin/res/throbber
|
|
|
|
$(INSTALL) throbber/anims03.gif $(DIST)/bin/res/throbber
|
|
|
|
$(INSTALL) throbber/anims04.gif $(DIST)/bin/res/throbber
|
|
|
|
$(INSTALL) throbber/anims05.gif $(DIST)/bin/res/throbber
|
|
|
|
$(INSTALL) throbber/anims06.gif $(DIST)/bin/res/throbber
|
|
|
|
$(INSTALL) throbber/anims07.gif $(DIST)/bin/res/throbber
|
|
|
|
$(INSTALL) throbber/anims08.gif $(DIST)/bin/res/throbber
|
|
|
|
$(INSTALL) throbber/anims09.gif $(DIST)/bin/res/throbber
|
1998-07-11 06:23:49 +00:00
|
|
|
$(INSTALL) throbber/anims10.gif $(DIST)/bin/res/throbber
|
1998-07-11 05:33:00 +00:00
|
|
|
$(INSTALL) throbber/anims11.gif $(DIST)/bin/res/throbber
|
|
|
|
$(INSTALL) throbber/anims12.gif $(DIST)/bin/res/throbber
|
|
|
|
$(INSTALL) throbber/anims13.gif $(DIST)/bin/res/throbber
|
1998-06-09 17:38:47 +00:00
|
|
|
|
|
|
|
clobber::
|
1998-06-09 18:01:15 +00:00
|
|
|
rm -f $(DIST)/bin/viewer.exe
|
|
|
|
rm -f $(DIST)/bin/res/samples/test0.html
|
|
|
|
rm -f $(DIST)/bin/res/samples/test1.html
|
|
|
|
rm -f $(DIST)/bin/res/samples/test2.html
|
|
|
|
rm -f $(DIST)/bin/res/samples/test3.html
|
|
|
|
rm -f $(DIST)/bin/res/samples/test4.html
|
|
|
|
rm -f $(DIST)/bin/res/samples/test5.html
|
|
|
|
rm -f $(DIST)/bin/res/samples/test6.html
|
|
|
|
rm -f $(DIST)/bin/res/samples/test7.html
|
|
|
|
rm -f $(DIST)/bin/res/samples/test8.html
|
1998-06-18 00:47:18 +00:00
|
|
|
rm -f $(DIST)/bin/res/samples/test8siz.html
|
|
|
|
rm -f $(DIST)/bin/res/samples/test8sca.html
|
|
|
|
rm -f $(DIST)/bin/res/samples/test8tab.html
|
|
|
|
rm -f $(DIST)/bin/res/samples/test9.html
|
|
|
|
rm -f $(DIST)/bin/res/samples/test9a.html
|
1998-07-27 05:59:37 +00:00
|
|
|
rm -f $(DIST)/bin/res/samples/test9b.html
|
1998-06-09 18:01:15 +00:00
|
|
|
rm -f $(DIST)/bin/res/samples/raptor.jpg
|
|
|
|
rm -f $(DIST)/bin/res/samples/Anieyes.gif
|
|
|
|
rm -f $(DIST)/bin/res/samples/gear1.gif
|
|
|
|
rm -f $(DIST)/bin/res/samples/rock_gra.gif
|
|
|
|
rm -f $(DIST)/bin/res/samples/bg.jpg
|
1998-10-26 18:07:14 +00:00
|
|
|
rm -f $(DIST)/bin/res/samples/test10.html
|
1998-07-11 05:33:00 +00:00
|
|
|
rm -f $(DIST)/bin/res/throbber/anims00.gif
|
|
|
|
rm -f $(DIST)/bin/res/throbber/anims01.gif
|
|
|
|
rm -f $(DIST)/bin/res/throbber/anims02.gif
|
|
|
|
rm -f $(DIST)/bin/res/throbber/anims03.gif
|
|
|
|
rm -f $(DIST)/bin/res/throbber/anims04.gif
|
|
|
|
rm -f $(DIST)/bin/res/throbber/anims05.gif
|
|
|
|
rm -f $(DIST)/bin/res/throbber/anims06.gif
|
|
|
|
rm -f $(DIST)/bin/res/throbber/anims07.gif
|
|
|
|
rm -f $(DIST)/bin/res/throbber/anims08.gif
|
|
|
|
rm -f $(DIST)/bin/res/throbber/anims09.gif
|
|
|
|
rm -f $(DIST)/bin/res/throbber/anims10.gif
|
|
|
|
rm -f $(DIST)/bin/res/throbber/anims11.gif
|
|
|
|
rm -f $(DIST)/bin/res/throbber/anims12.gif
|
|
|
|
rm -f $(DIST)/bin/res/throbber/anims13.gif
|
1998-06-09 18:01:15 +00:00
|
|
|
|
1998-06-05 17:14:01 +00:00
|
|
|
|