Bug 419242: moved a makefile rule from config.mk to Makefile so that 'all'

is the default (first) makefile target.  r=christophe.ravel
This commit is contained in:
wtc%google.com 2008-02-25 18:55:40 +00:00
Родитель 195d647587
Коммит e9a53718f1
4 изменённых файлов: 5 добавлений и 6 удалений

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

@ -78,6 +78,9 @@ include $(CORE_DEPTH)/coreconf/rules.mk
export:: private_export
# indicates dependency on freebl static lib
$(SHARED_LIBRARY): $(CRYPTOLIB)
# On AIX 4.3, IBM xlC_r compiler (version 3.6.6) cannot compile
# pkcs11c.c in 64-bit mode for unknown reasons. A workaround is
# to compile it with optimizations turned on. (Bugzilla bug #63815)

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

@ -108,6 +108,3 @@ endif
ifeq ($(OS_TARGET),WINCE)
DEFINES += -DDBM_USING_NSPR
endif
# indicates dependency on freebl static lib
$(SHARED_LIBRARY): $(CRYPTOLIB)

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

@ -78,3 +78,5 @@ include $(CORE_DEPTH)/coreconf/rules.mk
export:: private_export
# indicates dependency on freebl static lib
$(SHARED_LIBRARY): $(CRYPTOLIB)

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

@ -101,6 +101,3 @@ endif
ifeq ($(OS_TARGET),WINCE)
DEFINES += -DDBM_USING_NSPR
endif
# indicates dependency on freebl static lib
$(SHARED_LIBRARY): $(CRYPTOLIB)