1998-08-21 07:34:44 +04: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 = .
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
1998-10-28 06:40:33 +03:00
|
|
|
# The list of directories that need to be built to build the standalone
|
|
|
|
# nglayout test program. The order is important.
|
|
|
|
DIRS = \
|
|
|
|
config \
|
1999-04-13 08:15:34 +04:00
|
|
|
build \
|
1998-11-11 04:53:49 +03:00
|
|
|
$(NULL)
|
|
|
|
|
1999-04-11 14:32:45 +04:00
|
|
|
ifndef MOZ_NATIVE_NSPR
|
1999-04-24 03:18:48 +04:00
|
|
|
DIRS += $(topsrcdir)/nsprpub
|
1999-08-25 01:45:06 +04:00
|
|
|
# NSPR does not use Makefile.in
|
|
|
|
STATIC_MAKEFILES := $(topsrcdir)/nsprpub
|
1998-11-11 04:53:49 +03:00
|
|
|
endif
|
|
|
|
|
|
|
|
DIRS += \
|
1999-02-02 20:39:01 +03:00
|
|
|
dbm \
|
1998-10-28 06:40:33 +03:00
|
|
|
modules/libreg \
|
|
|
|
xpcom \
|
1998-11-11 04:53:49 +03:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifndef MOZ_NATIVE_ZLIB
|
1999-04-24 03:18:48 +04:00
|
|
|
DIRS += modules/zlib
|
1998-11-11 04:53:49 +03:00
|
|
|
endif
|
|
|
|
|
1999-02-02 20:39:01 +03:00
|
|
|
ifndef MOZ_NATIVE_JPEG
|
1999-04-24 03:18:48 +04:00
|
|
|
DIRS += jpeg
|
1999-02-02 20:39:01 +03:00
|
|
|
endif
|
|
|
|
|
1999-06-18 21:34:08 +04:00
|
|
|
ifdef NECKO
|
|
|
|
DIRS += netwerk
|
1999-06-21 04:26:16 +04:00
|
|
|
else
|
1999-08-03 03:59:56 +04:00
|
|
|
DIRS += network \
|
|
|
|
lib/libpwcac \
|
|
|
|
$(NULL)
|
1999-06-18 21:34:08 +04:00
|
|
|
endif
|
|
|
|
|
1998-11-11 04:53:49 +03:00
|
|
|
DIRS += \
|
1998-10-28 06:40:33 +03:00
|
|
|
modules/libutil \
|
1999-08-06 04:28:40 +04:00
|
|
|
lib/xp \
|
1999-01-21 15:12:49 +03:00
|
|
|
intl \
|
1998-10-28 06:40:33 +03:00
|
|
|
js \
|
|
|
|
modules/security/freenav \
|
|
|
|
modules/libpref \
|
|
|
|
modules/libimg \
|
1999-02-02 20:39:01 +03:00
|
|
|
modules/oji \
|
1998-10-28 06:40:33 +03:00
|
|
|
modules/plugin \
|
1999-03-25 23:47:28 +03:00
|
|
|
modules/libjar \
|
1998-11-21 09:05:24 +03:00
|
|
|
caps \
|
1999-02-27 13:40:40 +03:00
|
|
|
expat \
|
1999-08-17 15:51:14 +04:00
|
|
|
htmlparser \
|
1998-10-28 06:40:33 +03:00
|
|
|
gfx \
|
|
|
|
dom \
|
|
|
|
view \
|
|
|
|
widget \
|
|
|
|
layout \
|
1999-09-09 01:02:46 +04:00
|
|
|
db \
|
1998-12-02 03:22:44 +03:00
|
|
|
rdf \
|
1998-12-03 01:13:21 +03:00
|
|
|
webshell \
|
1999-01-20 04:39:08 +03:00
|
|
|
editor \
|
1999-02-02 21:01:34 +03:00
|
|
|
silentdl \
|
1999-03-25 23:47:28 +03:00
|
|
|
xpinstall \
|
1999-02-02 21:01:34 +03:00
|
|
|
sun-java \
|
1999-04-16 00:19:50 +04:00
|
|
|
profile \
|
1999-02-02 21:01:34 +03:00
|
|
|
$(NULL)
|
1998-11-19 01:35:21 +03:00
|
|
|
|
1999-02-18 07:19:43 +03:00
|
|
|
ifdef MOZ_BUILD_XPFE
|
1999-04-05 04:45:33 +04:00
|
|
|
DIRS += xpfe extensions
|
1999-02-18 07:19:43 +03:00
|
|
|
endif
|
1998-10-28 06:40:33 +03:00
|
|
|
|
1999-02-02 22:34:49 +03:00
|
|
|
ifdef MOZ_MAIL_NEWS
|
|
|
|
DIRS += mailnews
|
|
|
|
endif
|
|
|
|
|
1998-10-28 06:40:33 +03:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
|
|
|
real_all: all
|
|
|
|
|
|
|
|
real_export: export
|
|
|
|
|
|
|
|
real_libs: libs
|
|
|
|
|
|
|
|
real_install: install
|
|
|
|
|
|
|
|
real_clobber: clobber
|
|
|
|
|
|
|
|
real_depend: depend
|