~ubuntu-branches/ubuntu/saucy/nspr/saucy-updates

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/lib/tests/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2009-08-10 11:34:26 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090810113426-3uv4diflrkcbdimm
Tags: 4.8-0ubuntu1
* New upstream release: 4.8 (LP: #387812)
* adjust patches to changed upstreanm codebase
  - update debian/patches/99_configure.patch
* update shlibs symbols to include new API elements
  - update debian/libnspr4-0d.symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 
47
47
include $(topsrcdir)/config/config.mk
48
48
 
49
 
ifeq ($(OS_TARGET), WIN16)
50
 
OS_CFLAGS = $(OS_EXE_CFLAGS)
51
 
endif
52
 
 
53
49
CSRCS = \
54
50
        arena.c \
55
51
        base64t.c \
80
76
LIBPLDS = -lplds$(MOD_MAJOR_VERSION)
81
77
 
82
78
ifeq ($(OS_ARCH), WINNT)
83
 
ifeq ($(OS_TARGET), WIN16)
84
 
  LIBPR = $(dist_libdir)/nspr$(MOD_MAJOR_VERSION).lib
85
 
  LIBPLC= $(dist_libdir)/plc$(MOD_MAJOR_VERSION).lib
86
 
  LIBPLDS= $(dist_libdir)/plds$(MOD_MAJOR_VERSION).lib
87
 
else
88
79
  LDOPTS = -NOLOGO -DEBUG -INCREMENTAL:NO
89
80
  ifeq ($(OS_TARGET), WIN95)
90
81
  LIBPR = $(dist_libdir)/nspr$(MOD_MAJOR_VERSION).$(LIB_SUFFIX)
96
87
  LIBPLDS= $(dist_libdir)/libplds$(MOD_MAJOR_VERSION).$(LIB_SUFFIX)
97
88
  endif
98
89
endif
99
 
endif
100
90
 
101
91
ifeq ($(OS_ARCH),OS2)
102
92
LDOPTS += -Zomf -Zlinker /PM:VIO
214
204
        @$(MAKE_OBJDIR)
215
205
 
216
206
ifeq ($(OS_ARCH), WINNT)
217
 
ifeq ($(OS_TARGET),WIN16)
218
 
        echo system windows >w16link
219
 
        echo option map >>w16link
220
 
        echo option stack=10K >>w16link
221
 
        echo option heapsize=32K >>w16link
222
 
        echo debug $(DEBUGTYPE) all >>w16link
223
 
        echo name $@  >>w16link
224
 
        echo file >>w16link
225
 
        echo $<  >>w16link
226
 
        echo library  >>w16link
227
 
        echo $(LIBPR),       >>w16link
228
 
        echo $(LIBPLC),          >>w16link
229
 
        echo winsock.lib     >>w16link
230
 
        wlink @w16link.
231
 
else
232
207
        link $(LDOPTS) $< $(LIBPLC) $(LIBPLDS) $(LIBPR) wsock32.lib -out:$@
233
 
endif
234
208
else
235
209
ifeq ($(OS_ARCH),OS2)
236
210
        $(LINK) $(EXEFLAGS) $(LDOPTS) $< $(LIBPLC)  $(LIBPLDS) $(LIBPR) $(OS_LIBS) $(EXTRA_LIBS)
243
217
export:: $(TARGETS)
244
218
clean::
245
219
        rm -f $(TARGETS)
246
 
 
247
 
 
248