diff options
author | Chris Radek <chris@timeguy.com> | 2006-10-28 22:32:01 +0000 |
---|---|---|
committer | Chris Radek <chris@timeguy.com> | 2006-10-28 22:32:01 +0000 |
commit | b9373d1b609eed7dead8242657c1650ee2906efe (patch) | |
tree | b2e16fbc64a17ecefa66bb2997ff4e7b5334ea74 | |
parent | a86ac10f97eb75768c4be7df989fd1d6fdff75ec (diff) | |
download | linuxcnc-b9373d1b609eed7dead8242657c1650ee2906efe.tar.gz linuxcnc-b9373d1b609eed7dead8242657c1650ee2906efe.zip |
remove debugging output
-rw-r--r-- | src/hal/Submakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hal/Submakefile b/src/hal/Submakefile index 99a233079..448da80ec 100644 --- a/src/hal/Submakefile +++ b/src/hal/Submakefile @@ -13,7 +13,7 @@ $(HALLIB): $(call TOOBJS, $(HALLIBSRCS)) $(ECHO) Creating shared library $(notdir $@) @mkdir -p ../lib @rm -f $@ - $(CXX) -shared -Wl,-soname,libemchal.so -o $@ $^ + @$(CXX) -shared -Wl,-soname,libemchal.so -o $@ $^ HALMODULESRCS := hal/halmodule.cc PYSRCS += $(HALMODULESRCS) @@ -21,7 +21,7 @@ PYSRCS += $(HALMODULESRCS) HALMODULE := ../lib/python/hal.so $(HALMODULE): $(call TOOBJS, $(HALMODULESRCS)) $(HALLIB) $(ECHO) Linking python module $(notdir $@) - $(CXX) $(LDFLAGS) -shared -o $@ $^ + @$(CXX) $(LDFLAGS) -shared -o $@ $^ TARGETS += $(HALLIB) PYTARGETS += $(HALMODULE) |