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 /apps | |
parent | 8a33f380906a766780992f0151b5d5b822b36cdf (diff) | |
download | ATCD-26236e38cea4d34777990d5f18961d67e9cfaf30.tar.gz |
replaced hard-coded ".shobj" with "$(VSHDIR)" in LDLIBS definitions.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/JAWS/clients/Blobby/Makefile | 2 | ||||
-rw-r--r-- | apps/JAWS/clients/Caching/Makefile | 2 | ||||
-rw-r--r-- | apps/JAWS/stress_testing/Makefile | 2 | ||||
-rw-r--r-- | apps/Orbix-Examples/Event_Comm/Consumer/Makefile | 2 | ||||
-rw-r--r-- | apps/Orbix-Examples/Event_Comm/Supplier/Makefile | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/apps/JAWS/clients/Blobby/Makefile b/apps/JAWS/clients/Blobby/Makefile index da923fc5994..883df5f67f7 100644 --- a/apps/JAWS/clients/Blobby/Makefile +++ b/apps/JAWS/clients/Blobby/Makefile @@ -18,7 +18,7 @@ LSRC = $(addsuffix .cpp,$(FILES)) LOBJ = $(addsuffix .o,$(FILES)) SHOBJ = $(addsuffix .so,$(FILES)) -LDLIBS = $(addprefix .shobj/,$(SHOBJ)) +LDLIBS = $(addprefix $(VSHDIR),$(SHOBJ)) VLDLIBS = $(LDLIBS:%=%$(VAR)) diff --git a/apps/JAWS/clients/Caching/Makefile b/apps/JAWS/clients/Caching/Makefile index a62c084cad2..2490dbb4f2a 100644 --- a/apps/JAWS/clients/Caching/Makefile +++ b/apps/JAWS/clients/Caching/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)) diff --git a/apps/JAWS/stress_testing/Makefile b/apps/JAWS/stress_testing/Makefile index ef85fd09e4e..d941dba1c36 100644 --- a/apps/JAWS/stress_testing/Makefile +++ b/apps/JAWS/stress_testing/Makefile @@ -22,7 +22,7 @@ SHOBJ = $(addsuffix .so,$(FILES)) INCLDIRS += -I../.. -LDLIBS = $(addprefix .shobj/,$(SHOBJ)) +LDLIBS = $(addprefix $(VSHDIR),$(SHOBJ)) VLDLIBS = $(LDLIBS:%=%$(VAR)) diff --git a/apps/Orbix-Examples/Event_Comm/Consumer/Makefile b/apps/Orbix-Examples/Event_Comm/Consumer/Makefile index 792a5390fa5..3752d62134c 100644 --- a/apps/Orbix-Examples/Event_Comm/Consumer/Makefile +++ b/apps/Orbix-Examples/Event_Comm/Consumer/Makefile @@ -19,7 +19,7 @@ SHOBJ = $(addsuffix .so,$(FILES)) SRX = ../src/.obj -LDLIBS = $(addprefix .shobj/,$(LOBJ)) ../src/libEvent_Comm.a +LDLIBS = $(addprefix $(VSHDIR),$(LOBJ)) ../src/libEvent_Comm.a VLDLIBS = $(LDLIBS:%=%$(VAR)) BUILD = $(VBIN) diff --git a/apps/Orbix-Examples/Event_Comm/Supplier/Makefile b/apps/Orbix-Examples/Event_Comm/Supplier/Makefile index ab70d304067..3b98ef1e7c9 100644 --- a/apps/Orbix-Examples/Event_Comm/Supplier/Makefile +++ b/apps/Orbix-Examples/Event_Comm/Supplier/Makefile @@ -19,7 +19,7 @@ SHOBJ = $(addsuffix .so,$(FILES)) SRX = ../src/.obj -LDLIBS = $(addprefix .shobj/,$(LOBJ)) ../src/libEvent_Comm.a +LDLIBS = $(addprefix $(VSHDIR),$(LOBJ)) ../src/libEvent_Comm.a VLDLIBS = $(LDLIBS:%=%$(VAR)) |