Bug #194315 --> moz_thunderbird ifdef to not build many of the pieces in xpfe/components.

Should have 0 effect on Seamonkey builds. All of the changes are inside MOZ_THUNDERBIRD ifdef.

sr=bryner
This commit is contained in:
scott%scott-macgregor.org 2003-04-24 06:10:00 +00:00
Родитель 9e85171aac
Коммит e5ba01986e
1 изменённых файлов: 32 добавлений и 4 удалений

Просмотреть файл

@ -26,6 +26,7 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
ifndef MOZ_THUNDERBIRD
DIRS = \
directory \
filepicker \
@ -54,15 +55,42 @@ DIRS += \
$(NULL)
endif
ifdef MOZ_ENABLE_XREMOTE
DIRS += xremote
endif
ifeq ($(OS_ARCH),WINNT)
DIRS += winhooks urlwidget alerts
endif
else
DIRS = \
intl \
find \
download-manager \
autocomplete \
windowds \
prefwindow \
console \
sidebar/public \
history/public \
shistory/public \
bookmarks/public \
timebomb \
$(NULL)
ifeq ($(OS_ARCH),WINNT)
DIRS += alerts winhooks
endif
endif
ifdef MOZ_ENABLE_XREMOTE
DIRS += xremote
endif
ifndef MOZ_THUNDERBIRD
DIRS += build
else
DIRS += build2
endif
include $(topsrcdir)/config/rules.mk