You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by zh...@apache.org on 2019/07/19 03:42:29 UTC

[incubator-mxnet] 09/28: Update Makefile

This is an automated email from the ASF dual-hosted git repository.

zhasheng pushed a commit to tag v1.1
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git

commit a92044c08f2b77771058fad6305ba595a4f28d02
Author: Tianqi Chen <tq...@users.noreply.github.com>
AuthorDate: Fri May 16 16:57:52 2014 -0700

    Update Makefile
---
 example/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/example/Makefile b/example/Makefile
index 44e8152..cceb356 100644
--- a/example/Makefile
+++ b/example/Makefile
@@ -19,7 +19,7 @@ basic: basic.cpp
 defop: defop.cpp
 
 $(BIN) :
-	$(CXX) $(CFLAGS) $(LDFLAGS) -o $@ $(filter %.cpp %.o %.c, $^)
+	$(CXX) $(CFLAGS) -o $@ $(filter %.cpp %.o %.c, $^)  $(LDFLAGS)
 
 $(OBJ) :
 	$(CXX) -c $(CFLAGS) -o $@ $(firstword $(filter %.cpp %.c, $^) )