mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 07:47:32 +09:00
38 lines
893 B
Makefile
38 lines
893 B
Makefile
|
|
#
|
||
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||
|
|
|
||
|
|
# can't do this in manifest.mn because OS_TARGET isn't defined there.
|
||
|
|
ifeq (,$(filter-out WIN%,$(OS_TARGET)))
|
||
|
|
|
||
|
|
ifdef NS_USE_GCC
|
||
|
|
EXTRA_SHARED_LIBS += \
|
||
|
|
-L$(DIST)/lib \
|
||
|
|
-L$(NSPR_LIB_DIR) \
|
||
|
|
-lplc4 \
|
||
|
|
-lplds4 \
|
||
|
|
-lnspr4\
|
||
|
|
$(NULL)
|
||
|
|
else # ! NS_USE_GCC
|
||
|
|
EXTRA_SHARED_LIBS += \
|
||
|
|
$(NSPR_LIB_DIR)/$(NSPR31_LIB_PREFIX)plc4.lib \
|
||
|
|
$(NSPR_LIB_DIR)/$(NSPR31_LIB_PREFIX)plds4.lib \
|
||
|
|
$(NSPR_LIB_DIR)/$(NSPR31_LIB_PREFIX)nspr4.lib \
|
||
|
|
$(NULL)
|
||
|
|
endif # NS_USE_GCC
|
||
|
|
|
||
|
|
else
|
||
|
|
|
||
|
|
# $(PROGRAM) has NO explicit dependencies on $(EXTRA_SHARED_LIBS)
|
||
|
|
# $(EXTRA_SHARED_LIBS) come before $(OS_LIBS), except on AIX.
|
||
|
|
EXTRA_SHARED_LIBS += \
|
||
|
|
-L$(DIST)/lib \
|
||
|
|
-L$(NSPR_LIB_DIR) \
|
||
|
|
-lplc4 \
|
||
|
|
-lplds4 \
|
||
|
|
-lnspr4 \
|
||
|
|
$(NULL)
|
||
|
|
|
||
|
|
endif
|
||
|
|
|