1998-12-09 01:43:20 +03: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@
|
|
|
|
|
1999-01-27 05:26:53 +03:00
|
|
|
PROGRAM = apprunner
|
|
|
|
|
|
|
|
MODULE = apprunner
|
|
|
|
|
1998-12-09 01:43:20 +03:00
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
|
1998-12-19 00:58:57 +03:00
|
|
|
TOOLKIT_GFX_LIB = -lgfx$(MOZ_TOOLKIT)
|
|
|
|
TOOLKIT_WIDGET_LIB = -lwidget$(MOZ_TOOLKIT)
|
|
|
|
TOOLKIT_BASE_LIB = -lgmbase$(MOZ_TOOLKIT)
|
1998-12-09 01:43:20 +03:00
|
|
|
|
|
|
|
|
1999-01-27 05:26:53 +03:00
|
|
|
LIBS = \
|
1998-12-09 01:43:20 +03:00
|
|
|
-L$(DIST)/bin \
|
1998-12-18 05:55:23 +03:00
|
|
|
-lnsappshell \
|
1998-12-09 01:43:20 +03:00
|
|
|
-lxpcom \
|
|
|
|
-lraptorbase \
|
1998-12-19 00:58:57 +03:00
|
|
|
$(TOOLKIT_WIDGET_LIB)\
|
1998-12-09 01:43:20 +03:00
|
|
|
-lraptorgfx \
|
1998-12-19 00:58:57 +03:00
|
|
|
$(TOOLKIT_GFX_LIB)\
|
1999-02-22 21:56:54 +03:00
|
|
|
-lgfxps \
|
1998-12-19 00:58:57 +03:00
|
|
|
$(TOOLKIT_BASE_LIB)\
|
1998-12-09 01:43:20 +03:00
|
|
|
-lreg \
|
|
|
|
-labouturl \
|
|
|
|
-lhttpurl \
|
1999-01-28 07:11:44 +03:00
|
|
|
-lsockstuburl \
|
1998-12-09 01:43:20 +03:00
|
|
|
-lfileurl \
|
|
|
|
-lgophurl \
|
|
|
|
-lftpurl \
|
|
|
|
-lremoturl \
|
|
|
|
-lxp \
|
|
|
|
-lnetutil \
|
|
|
|
-lnetcache \
|
|
|
|
-lnetcnvts \
|
|
|
|
-lmimetype \
|
|
|
|
-lnetwork \
|
|
|
|
-lnetlib \
|
|
|
|
-lraptorwebwidget \
|
1998-12-18 05:55:23 +03:00
|
|
|
-lraptorhtml \
|
1998-12-18 07:47:26 +03:00
|
|
|
-lraptorhtmlpars \
|
1998-12-18 05:55:23 +03:00
|
|
|
-ljsdom \
|
1998-12-18 07:47:26 +03:00
|
|
|
-ljsurl \
|
1998-12-09 01:43:20 +03:00
|
|
|
-lraptorbase \
|
|
|
|
-lsecfree \
|
|
|
|
-ljs \
|
|
|
|
$(JSJ_LIB) \
|
|
|
|
-lpref \
|
|
|
|
-limg \
|
|
|
|
$(JPEG_LIBS) \
|
|
|
|
$(PNG_LIBS) \
|
1998-12-15 10:37:32 +03:00
|
|
|
-lmozutil \
|
1998-12-09 01:43:20 +03:00
|
|
|
-lxp \
|
|
|
|
-lxpcom \
|
|
|
|
$(ZLIB_LIBS) \
|
1999-03-09 03:24:17 +03:00
|
|
|
$(NSPR_LIBS) \
|
1998-12-09 01:43:20 +03:00
|
|
|
-lpwcac \
|
1999-01-27 05:26:53 +03:00
|
|
|
$(TK_LIBS) \
|
1998-12-09 01:43:20 +03:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
|
1998-12-19 00:58:57 +03:00
|
|
|
CPPSRCS = \
|
1998-12-09 01:43:20 +03:00
|
|
|
nsAppRunner.cpp \
|
|
|
|
nsSetupRegistry.cpp \
|
|
|
|
nsUnixStubs.cpp \
|
|
|
|
$(NULL)
|
|
|
|
|
1999-01-27 05:26:53 +03:00
|
|
|
include $(topsrcdir)/config/config.mk
|
1998-12-09 01:43:20 +03:00
|
|
|
|
1999-01-08 23:10:36 +03:00
|
|
|
CFLAGS += $(TOOLKIT_CFLAGS)
|
1998-12-09 01:43:20 +03:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|