1998-08-21 03:34:44 +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 = .
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
1999-09-08 22:59:23 +00:00
|
|
|
DIRS = config build
|
1998-11-11 01:53:49 +00:00
|
|
|
|
1999-04-11 10:32:45 +00:00
|
|
|
ifndef MOZ_NATIVE_NSPR
|
1999-09-08 22:59:23 +00:00
|
|
|
DIRS += $(topsrcdir)/nsprpub
|
1999-08-24 21:45:06 +00:00
|
|
|
# NSPR does not use Makefile.in
|
|
|
|
STATIC_MAKEFILES := $(topsrcdir)/nsprpub
|
1998-11-11 01:53:49 +00:00
|
|
|
endif
|
|
|
|
|
1999-09-08 22:59:23 +00:00
|
|
|
DIRS += dbm modules/libreg xpcom
|
1998-11-11 01:53:49 +00:00
|
|
|
|
|
|
|
ifndef MOZ_NATIVE_ZLIB
|
1999-09-08 22:59:23 +00:00
|
|
|
DIRS += modules/zlib
|
1998-11-11 01:53:49 +00:00
|
|
|
endif
|
|
|
|
|
1999-02-02 17:39:01 +00:00
|
|
|
ifndef MOZ_NATIVE_JPEG
|
1999-09-08 22:59:23 +00:00
|
|
|
DIRS += jpeg
|
1999-02-02 17:39:01 +00:00
|
|
|
endif
|
|
|
|
|
1999-09-08 22:59:23 +00:00
|
|
|
DIRS += \
|
|
|
|
netwerk \
|
|
|
|
modules/libutil \
|
|
|
|
intl \
|
|
|
|
js \
|
|
|
|
modules/security/freenav \
|
|
|
|
modules/libpref \
|
|
|
|
modules/libimg \
|
|
|
|
modules/oji \
|
|
|
|
modules/plugin \
|
|
|
|
modules/libjar \
|
|
|
|
caps \
|
|
|
|
expat \
|
|
|
|
htmlparser \
|
1999-09-12 12:33:52 +00:00
|
|
|
widget/timer \
|
1999-09-08 22:59:23 +00:00
|
|
|
gfx \
|
|
|
|
dom \
|
|
|
|
view \
|
|
|
|
widget \
|
|
|
|
layout \
|
|
|
|
db \
|
|
|
|
rdf \
|
|
|
|
webshell \
|
|
|
|
editor \
|
|
|
|
xpinstall \
|
|
|
|
sun-java \
|
|
|
|
profile \
|
|
|
|
$(NULL)
|
1998-11-18 22:35:21 +00:00
|
|
|
|
1999-02-18 04:19:43 +00:00
|
|
|
ifdef MOZ_BUILD_XPFE
|
1999-09-08 22:59:23 +00:00
|
|
|
DIRS += xpfe extensions
|
1999-02-18 04:19:43 +00:00
|
|
|
endif
|
1998-10-28 03:40:33 +00:00
|
|
|
|
1999-02-02 19:34:49 +00:00
|
|
|
ifdef MOZ_MAIL_NEWS
|
1999-09-08 22:59:23 +00:00
|
|
|
DIRS += mailnews
|
1999-02-02 19:34:49 +00:00
|
|
|
endif
|
|
|
|
|
1998-10-28 03:40:33 +00:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
|
|
|
real_all: all
|
|
|
|
|
|
|
|
real_export: export
|
|
|
|
|
|
|
|
real_libs: libs
|
|
|
|
|
|
|
|
real_install: install
|
|
|
|
|
|
|
|
real_clobber: clobber
|
|
|
|
|
|
|
|
real_depend: depend
|