Workaround for platforms that don't have --whole-archive (or equivalents).

This commit is contained in:
briano%netscape.com 1999-07-14 22:58:39 +00:00
Родитель eb87037710
Коммит f89cb1f1c7
1 изменённых файлов: 9 добавлений и 6 удалений

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

@ -13,6 +13,7 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
DEPTH = ../../../..
topsrcdir = @top_srcdir@
@ -25,16 +26,18 @@ MODULE = xpcom
SIMPLE_PROGRAMS = TestInterfaceInfo
CSRCS =
CPPSRCS = TestInterfaceInfo.cpp
CPPSRCS = \
TestInterfaceInfo.cpp \
$(NULL)
ifdef NO_LD_ARCHIVE_FLAGS
LOST_SYM_LIBS = -lxpcomds_s -lxptinfo
endif
LIBS = \
-L$(DIST)/bin \
-lxpcom \
$(NSPR_LIBS) \
-L$(DIST)/lib \
-lxpcom \
$(LOST_SYM_LIBS) \
$(NSPR_LIBS) \
$(NULL)
include $(topsrcdir)/config/rules.mk