diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-27 14:05:25 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-27 14:05:25 +0000 |
commit | 26236e38cea4d34777990d5f18961d67e9cfaf30 (patch) | |
tree | bbcab13d2866afb35f2a94f3cac460cef3f03d26 /examples/Reactor/Multicast | |
parent | 8a33f380906a766780992f0151b5d5b822b36cdf (diff) | |
download | ATCD-26236e38cea4d34777990d5f18961d67e9cfaf30.tar.gz |
replaced hard-coded ".shobj" with "$(VSHDIR)" in LDLIBS definitions.
Diffstat (limited to 'examples/Reactor/Multicast')
-rw-r--r-- | examples/Reactor/Multicast/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Reactor/Multicast/Makefile b/examples/Reactor/Multicast/Makefile index 5697cce9ff6..5d164bd45ec 100644 --- a/examples/Reactor/Multicast/Makefile +++ b/examples/Reactor/Multicast/Makefile @@ -16,7 +16,7 @@ LSRC = $(addsuffix .cpp,$(FILES)) LOBJ = $(addsuffix .o,$(FILES)) SHOBJ = $(addsuffix .so,$(FILES)) -LDLIBS = $(addprefix .shobj/,$(SHOBJ)) +LDLIBS = $(addprefix $(VSHDIR),$(SHOBJ)) VLDLIBS = $(LDLIBS:%=%$(VAR)) |