ia64/xen-unstable
changeset 7376:43677823b395
Fix client dependency on libxenstore in Makefile.
Signed-off-by: Keir Fraser <keir@xensource.com>
Signed-off-by: Keir Fraser <keir@xensource.com>
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Thu Oct 13 11:12:11 2005 +0100 (2005-10-13) |
parents | 9e373ffff3e6 |
children | 10c93f58b041 7b9547485703 |
files | tools/xenstore/Makefile |
line diff
1.1 --- a/tools/xenstore/Makefile Thu Oct 13 08:38:49 2005 +0100 1.2 +++ b/tools/xenstore/Makefile Thu Oct 13 11:12:11 2005 +0100 1.3 @@ -34,8 +34,8 @@ testcode: xs_test xenstored_test xs_rand 1.4 xenstored: xenstored_core.o xenstored_watch.o xenstored_domain.o xenstored_transaction.o xs_lib.o talloc.o utils.o tdb.o 1.5 $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -lxenctrl -o $@ 1.6 1.7 -$(CLIENTS): xenstore-%: xenstore_%.o 1.8 - $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -lxenctrl -L. -lxenstore -o $@ 1.9 +$(CLIENTS): xenstore-%: xenstore_%.o libxenstore.so 1.10 + $(LINK.o) $< $(LOADLIBES) $(LDLIBS) -lxenctrl -L. -lxenstore -o $@ 1.11 1.12 $(CLIENTS_OBJS): xenstore_%.o: xenstore_client.c 1.13 $(COMPILE.c) -DCLIENT_$(*F) -o $@ $<