Don't build nss/cmd or nss/lib/fortcrypt on WinCE.

This commit is contained in:
nelsonb%netscape.com 2002-04-05 03:34:57 +00:00
Родитель 130c1e83db
Коммит ead7be632b
2 изменённых файлов: 7 добавлений и 1 удалений

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

@ -54,6 +54,10 @@ include $(CORE_DEPTH)/coreconf/config.mk
# (4) Include "local" platform-dependent assignments (OPTIONAL). #
#######################################################################
ifeq ($(OS_TARGET),WINCE)
DIRS = lib # omit cmd since wince has no command line shell
endif
#######################################################################
# (5) Execute "global" rules. (OPTIONAL) #
#######################################################################

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

@ -54,7 +54,9 @@ include $(CORE_DEPTH)/coreconf/config.mk
# (4) Include "local" platform-dependent assignments (OPTIONAL). #
#######################################################################
ifeq ($(OS_TARGET), WINCE)
DIRS := $(filter-out fortcrypt,$(DIRS))
endif
#######################################################################
# (5) Execute "global" rules. (OPTIONAL) #