# # 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/. #! gmake MOD_DEPTH = ../../.. topsrcdir = @top_srcdir@ srcdir = @srcdir@ VPATH = @srcdir@ include $(MOD_DEPTH)/config/autoconf.mk include $(topsrcdir)/config/config.mk CSRCS = mygetval.c mysetval.c INCLUDES = -I$(dist_includedir) OBJS = $(OBJDIR)/mygetval.$(OBJ_SUFFIX) \ $(OBJDIR)/mysetval.$(OBJ_SUFFIX) ifeq ($(OS_ARCH), WINNT) RES=$(OBJDIR)/my.res RESNAME=../../../pr/src/nspr.rc endif ifeq (,$(filter-out WINNT,$(OS_ARCH))) IMPORT_LIBRARY = $(OBJDIR)/my.$(LIB_SUFFIX) SHARED_LIBRARY = $(OBJDIR)/my.dll TARGETS = $(SHARED_LIBRARY) $(IMPORT_LIBRARY) else ifdef MKSHLIB SHARED_LIBRARY = $(OBJDIR)/libmy.$(DLL_SUFFIX) endif TARGETS = $(SHARED_LIBRARY) endif # # To create a loadable module on Darwin, we must override # -dynamiclib with -bundle. # ifeq ($(OS_ARCH),Darwin) DSO_LDOPTS = -bundle endif include $(topsrcdir)/config/rules.mk ifdef SHARED_LIBRARY export:: $(TARGETS) clean:: rm -rf $(TARGETS) endif