diff options
author | Matthew Newhook <matthew@zeroc.com> | 2006-09-12 08:22:25 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2006-09-12 08:22:25 +0000 |
commit | 73e9ecf31e056000d0655c7860d255b24a1ea0e9 (patch) | |
tree | ab2942cd8c0e731397e4ad9436ec157f449b9fdd /cpp | |
parent | Minor Makefile tweak. (diff) | |
download | ice-73e9ecf31e056000d0655c7860d255b24a1ea0e9.tar.bz2 ice-73e9ecf31e056000d0655c7860d255b24a1ea0e9.tar.xz ice-73e9ecf31e056000d0655c7860d255b24a1ea0e9.zip |
Minor Makefile tweak.
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/demo/IceStorm/counter/Makefile | 4 |
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 |