summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2006-09-12 08:22:25 +0000
committerMatthew Newhook <matthew@zeroc.com>2006-09-12 08:22:25 +0000
commit73e9ecf31e056000d0655c7860d255b24a1ea0e9 (patch)
treeab2942cd8c0e731397e4ad9436ec157f449b9fdd
parentMinor Makefile tweak. (diff)
downloadice-73e9ecf31e056000d0655c7860d255b24a1ea0e9.tar.bz2
ice-73e9ecf31e056000d0655c7860d255b24a1ea0e9.tar.xz
ice-73e9ecf31e056000d0655c7860d255b24a1ea0e9.zip
Minor Makefile tweak.
-rw-r--r--cpp/demo/IceStorm/counter/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/demo/IceStorm/counter/Makefile b/cpp/demo/IceStorm/counter/Makefile
index 4c12b4b97d9..77592230609 100644
--- a/cpp/demo/IceStorm/counter/Makefile
+++ b/cpp/demo/IceStorm/counter/Makefile
@@ -31,7 +31,7 @@ SLICE_SRCS = Counter.ice
include $(top_srcdir)/config/Make.rules
CPPFLAGS := -I. $(CPPFLAGS)
-LIBS := -lIceStorm $(LIBS)
+IS_LIBS := -lIceStorm $(LIBS)
$(CLIENT): $(OBJS) $(COBJS)
rm -f $@
@@ -39,6 +39,6 @@ $(CLIENT): $(OBJS) $(COBJS)
$(SERVER): $(OBJS) $(SOBJS)
rm -f $@
- $(CXX) $(LDFLAGS) -o $@ $(OBJS) $(SOBJS) $(LIBS)
+ $(CXX) $(LDFLAGS) -o $@ $(OBJS) $(SOBJS) $(IS_LIBS)
include .depend