Bugzilla bug #63019: do not build static libraries unless the platform

does not have shared libraries.


git-svn-id: svn://10.0.0.236/trunk@83771 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
wtc%netscape.com
2000-12-16 18:09:00 +00:00
parent 6597d3c1e7
commit cd31f55efa

View File

@@ -130,10 +130,14 @@ endif
endif
ifndef TARGETS
ifdef SHARED_LIBRARY
ifeq (,$(filter-out WINNT OS2,$(OS_ARCH)))
TARGETS = $(LIBRARY) $(SHARED_LIBRARY) $(IMPORT_LIBRARY)
TARGETS = $(SHARED_LIBRARY) $(IMPORT_LIBRARY)
else
TARGETS = $(LIBRARY) $(SHARED_LIBRARY)
TARGETS = $(SHARED_LIBRARY)
endif
else
TARGETS = $(LIBRARY)
endif
endif