initial load of upstream version 1.06.32
[xmlrpc-c] / src / cpp / dylib.make
1 # -*-makefile-*-    <-- an Emacs control
2
3 # This is stuff for creating Macintosh 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:%=%.dylib)
10 TARGET_SONAMES = $(TARGET_LIBRARY_NAMES:%=%.$(MAJ).dylib
11
12 $(TARGET_LINKNAMES): %.dylib : %.$(MAJ).dylib
13         rm -f $@
14         $(SYMLINK) $< $@
15
16 $(TARGET_SONAMES): %.dylib : %.$(MIN).dylib
17         rm -f $@
18         $(SYMLINK) $< $@
19
20 libxmlrpc++.$(MAJ).$(MIN).dylib: $(LIBXMLRPCPP_OBJS)
21         $(LD) $(LDSHLIB) -o $@ $^ -lc $(LADD)