config.mk 622 B

1234567891011121314151617
  1. #
  2. # This Source Code Form is subject to the terms of the Mozilla Public
  3. # License, v. 2.0. If a copy of the MPL was not distributed with this
  4. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  5. # can't do this in manifest.mn because OS_TARGET isn't defined there.
  6. ifeq (,$(filter-out WIN%,$(OS_TARGET)))
  7. # don't want the 32 in the shared library name
  8. SHARED_LIBRARY = $(OBJDIR)/$(DLL_PREFIX)$(LIBRARY_NAME)$(LIBRARY_VERSION).$(DLL_SUFFIX)
  9. IMPORT_LIBRARY = $(OBJDIR)/$(IMPORT_LIB_PREFIX)$(LIBRARY_NAME)$(LIBRARY_VERSION)$(IMPORT_LIB_SUFFIX)
  10. RES = $(OBJDIR)/$(LIBRARY_NAME).res
  11. RESNAME = $(LIBRARY_NAME).rc
  12. endif