1 --- mozilla.pure/security/nss/cmd/shlibsign/Makefile 2007-02-16 03:16:24.000000000 +0100
2 +++ mozilla/security/nss/cmd/shlibsign/Makefile 2008-11-05 14:04:54.798875000 +0100
5 include ../platrules.mk
7 -SRCDIR = $(call core_abspath,.)
9 +ifeq ($(OS_TARGET), Darwin)
12 +ifeq ($(OS_TARGET), Linux)
15 +ifeq ($(OS_TARGET), WIN95)
16 + SRCDIR = $(shell cygpath -d $(SRCDIR))
18 + SRCDIR = $(call core_abspath,.)
22 %.chk: %.$(DLL_SUFFIX)
23 ifeq ($(OS_TARGET), OS2)
24 cd $(OBJDIR) ; cmd.exe /c $(SRCDIR)/sign.cmd $(DIST) \
25 $(call core_abspath,$(OBJDIR)) $(OS_TARGET) \
26 $(call core_abspath,$(NSPR_LIB_DIR)) $(call core_abspath,$<)
28 +ifeq ($(OS_TARGET), WIN95)
29 + sh $(CYGWIN_WRAPPER) ./sign.sh $(shell cygpath -d -a $(DIST)) \
30 + $(shell cygpath -d -a $(OBJDIR)) $(OS_TARGET) \
31 + $(shell cygpath -d -a $(NSPR_LIB_DIR)) $(shell cygpath -d -a $<)
33 +ifeq ($(OS_TARGET), Darwin)
34 + cd $(SRCDIR) ; sh ./sign.sh $(DIST) \
35 + $(OBJDIR) $(OS_TARGET) \
38 +ifeq ($(OS_TARGET), Linux)
39 + cd $(SRCDIR) ; sh ./sign.sh $(DIST) \
40 + $(OBJDIR) $(OS_TARGET) \
43 cd $(OBJDIR) ; sh $(SRCDIR)/sign.sh $(call core_abspath,$(DIST)) \
44 $(call core_abspath,$(OBJDIR)) $(OS_TARGET) \
45 $(call core_abspath,$(NSPR_LIB_DIR)) $(call core_abspath,$<)
51 libs install :: $(CHECKLOC)