initial load of upstream version 1.06.32
[xmlrpc-c] / src / cpp / irix.make
1 # -*-makefile-*-    <-- an Emacs control
2
3 # This is stuff for creating Irix shared libraries
4
5 # This is to be included by 'Makefile'.  Most of the make variables here
6 # come from the main make file.
7
8
9 TARGET_LINKNAMES = $(TARGET_LIBRARY_NAMES:%=%.$(SHLIB_SUFFIX)
10
11 $(TARGET_LINKNAMES): % : %.$(MAJ).$(MIN)
12         rm -f $@
13         $(SYMLINK) $< $@
14
15 LDSHLIB = -lc \
16           -soname $(@:%.$(MAJ)=%) \
17           -set_version `perl -e 'print "sgi$(MAJ).".join(":sgi$(MAJ).",(0..$(MIN)))."\n"'` \
18
19
20 libxmlrpc++.$(SHLIB_SUFFIX).$(MAJ): $(LIBXMLRPCPP_OBJS)
21         $(LD) $(LDSHLIB) -o $@ $^ $(LADD)
22