1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-23 00:15:58 +01:00

add './' to in example makefile, since . may not be included in PATH

This commit is contained in:
Weihong.Guan
2013-03-25 16:05:30 +08:00
parent ad3861ab43
commit 356b43d1c2

View File

@@ -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)