From 356b43d1c2945d210f405810cd41c1810e924775 Mon Sep 17 00:00:00 2001 From: "Weihong.Guan" Date: Mon, 25 Mar 2013 16:05:30 +0800 Subject: [PATCH] add './' to in example makefile, since . may not be included in PATH --- examples/makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/makefile b/examples/makefile index 3d4ac1f..98258e4 100644 --- a/examples/makefile +++ b/examples/makefile @@ -32,8 +32,8 @@ default: # ruby auto/generate_test_runner.rb test/TestProductionCode2.c test/no_ruby/TestProductionCode2_Runner.c $(C_COMPILER) $(INC_DIRS) $(SYMBOLS) $(SRC_FILES1) -o $(TARGET1) $(C_COMPILER) $(INC_DIRS) $(SYMBOLS) $(SRC_FILES2) -o $(TARGET2) - $(TARGET1) - $(TARGET2) + ./$(TARGET1) + ./$(TARGET2) clean: $(CLEANUP)