diff options
author | gdt <gdt> | 2004-07-23 16:23:56 +0000 |
---|---|---|
committer | gdt <gdt> | 2004-07-23 16:23:56 +0000 |
commit | 5fffe5f6822408ac749a5d94a86e2721d2110941 (patch) | |
tree | 0a4c91f027e22c9af6cf0676958bee4391a2eb10 /zebra | |
parent | 4079ab3a323b8582c532644e3c1b890c817be479 (diff) | |
download | quagga-5fffe5f6822408ac749a5d94a86e2721d2110941.tar.bz2 quagga-5fffe5f6822408ac749a5d94a86e2721d2110941.tar.xz |
(somewhat unrelated cleanups, but all are very minor)
2004-07-23 Greg Troxel <gdt@poblano.ir.bbn.com>
* */Makefile.am: Use ../dir/libfoo.la, rather than "-L../dir
-lfoo", to avoid linking against installed libraries from a
previous version.
* {lib,ospfd,ospfclient}/Makefile.am: explicitly define the shared
library version number to be 0.0
* configure.ac: remove spurious , so extract.pl is chmod'd +x.
* HACKING: explain shared library versioning rules
Diffstat (limited to 'zebra')
-rw-r--r-- | zebra/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/zebra/Makefile.am b/zebra/Makefile.am index 0782894c..87a994f1 100644 --- a/zebra/Makefile.am +++ b/zebra/Makefile.am @@ -30,7 +30,7 @@ noinst_HEADERS = \ connected.h ioctl.h rib.h rt.h zserv.h redistribute.h debug.h rtadv.h \ interface.h ipforward.h irdp.h -zebra_LDADD = $(otherobj) $(LIBCAP) $(LIB_IPV6) -L../lib -lzebra +zebra_LDADD = $(otherobj) $(LIBCAP) $(LIB_IPV6) ../lib/libzebra.la zebra_DEPENDENCIES = $(otherobj) @@ -42,8 +42,8 @@ EXTRA_DIST = if_ioctl.c if_ioctl_solaris.c if_netlink.c if_proc.c \ ioctl.c ioctl_solaris.c \ GNOME-SMI GNOME-PRODUCT-ZEBRA-MIB -#client : client_main.o -L../lib -lzebra -# $(CC) -g -o client client_main.o -L../lib -lzebra $(LIBS) $(LIB_IPV6) +#client : client_main.o ../lib/libzebra.la +# $(CC) -g -o client client_main.o ../liblzebra.la $(LIBS) $(LIB_IPV6) quaggaconfdir = $(sysconfdir) |