mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-19 17:38:36 +00:00
169 lines
3.3 KiB
Makefile
169 lines
3.3 KiB
Makefile
#!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@
|
|
|
|
PROGRAM = apprunner
|
|
|
|
MODULE = apprunner
|
|
|
|
#REQUIRES = raptor xpcom base netlib pref js dom
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
TOOLKIT_GFX_LIB = -lgfx$(MOZ_TOOLKIT)
|
|
TOOLKIT_WIDGET_LIB = -lwidget$(MOZ_TOOLKIT)
|
|
TOOLKIT_BASE_LIB = -lgmbase$(MOZ_TOOLKIT)
|
|
|
|
EXPORT_TOOLBAR = \
|
|
DialogAddrIcon.gif \
|
|
DialogAddrIcon_mo.gif \
|
|
DialogCompIcon.gif \
|
|
DialogCompIcon_mo.gif \
|
|
DialogMailIcon.gif \
|
|
DialogMailIcon_mo.gif \
|
|
DialogNavIcon.gif \
|
|
DialogNavIcon_mo.gif \
|
|
StatusBar-insecure.gif \
|
|
StatusBar-secure.gif \
|
|
TB_Back.gif \
|
|
TB_Back_dis.gif \
|
|
TB_Back_mo.gif \
|
|
TB_Bookmarks.gif \
|
|
TB_Bookmarks_mo.gif \
|
|
TB_Edit.gif \
|
|
TB_Edit.mo.gif \
|
|
TB_EditPage.gif \
|
|
TB_EditPage.mo.gif \
|
|
TB_Forward.gif \
|
|
TB_Forward_dis.gif \
|
|
TB_Forward_mo.gif \
|
|
TB_HTab.gif \
|
|
TB_HTab_mo.gif \
|
|
TB_Home.gif \
|
|
TB_Home_mo.gif \
|
|
TB_LoadImages.gif \
|
|
TB_LoadImages.mo.gif \
|
|
TB_Location.gif \
|
|
TB_Location_mo.gif \
|
|
TB_MiniAddr.gif \
|
|
TB_MiniComp.gif \
|
|
TB_MiniMail.gif \
|
|
TB_MiniNav.gif \
|
|
TB_MiniTab.gif \
|
|
TB_MixSecurity.gif \
|
|
TB_MixSecurity.mo.gif \
|
|
TB_Netscape.gif \
|
|
TB_Netscape_mo.gif \
|
|
TB_PersonalIcon.gif \
|
|
TB_Places.gif \
|
|
TB_Places_mo.gif \
|
|
TB_Print.gif \
|
|
TB_Print_mo.gif \
|
|
TB_Reload.gif \
|
|
TB_Reload_mo.gif \
|
|
TB_Search.gif \
|
|
TB_Search_mo.gif \
|
|
TB_Secure.gif \
|
|
TB_Secure_mo.gif \
|
|
TB_Stop.gif \
|
|
TB_Stop.mo.gif \
|
|
TB_Stop_dis.gif \
|
|
TB_Stop_mo.gif \
|
|
TB_Tab.gif \
|
|
TB_TabSmall.gif \
|
|
TB_TabSmall_mo.gif \
|
|
TB_Tab_mo.gif \
|
|
TB_Unsecure.gif \
|
|
TB_Unsecure.mo.gif \
|
|
TB_WhatsRelated.gif \
|
|
TB_WhatsRelated_mo.gif \
|
|
$(NULL)
|
|
|
|
# Pull these out of xpviewer for now (i.e. This is a hack).
|
|
#
|
|
EXPORT_RESOURCES := \
|
|
$(addprefix $(topsrcdir)/xpfe/xpviewer/src/resources/toolbar/, \
|
|
$(EXPORT_TOOLBAR))
|
|
|
|
LIBS = \
|
|
-L$(DIST)/bin \
|
|
-lnsappshell \
|
|
-lxpcom \
|
|
-lraptorbase \
|
|
$(TOOLKIT_WIDGET_LIB)\
|
|
-lraptorgfx \
|
|
$(TOOLKIT_GFX_LIB)\
|
|
$(TOOLKIT_BASE_LIB)\
|
|
-lreg \
|
|
-labouturl \
|
|
-lhttpurl \
|
|
-lsockstuburl \
|
|
-lfileurl \
|
|
-lgophurl \
|
|
-lftpurl \
|
|
-lremoturl \
|
|
-lxp \
|
|
-lnetutil \
|
|
-lnetcache \
|
|
-lnetcnvts \
|
|
-lmimetype \
|
|
-lnetwork \
|
|
-lnetlib \
|
|
-lraptorwebwidget \
|
|
-lraptorhtml \
|
|
-lraptorhtmlpars \
|
|
-ljsdom \
|
|
-ljsurl \
|
|
-lraptorbase \
|
|
-lsecfree \
|
|
-ljs \
|
|
$(JSJ_LIB) \
|
|
-lpref \
|
|
-limg \
|
|
$(JPEG_LIBS) \
|
|
$(PNG_LIBS) \
|
|
-lmozutil \
|
|
-lxp \
|
|
-lxpcom \
|
|
$(NSPR_LIBS) \
|
|
$(ZLIB_LIBS) \
|
|
-lpwcac \
|
|
$(TK_LIBS) \
|
|
$(NULL)
|
|
|
|
|
|
CPPSRCS = \
|
|
nsAppRunner.cpp \
|
|
nsSetupRegistry.cpp \
|
|
nsUnixStubs.cpp \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
CFLAGS += $(TOOLKIT_CFLAGS)
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
install::
|
|
$(INSTALL) $(EXPORT_RESOURCES) $(DIST)/bin/res/toolbar
|