1
0
mirror of https://github.com/ThrowTheSwitch/Unity synced 2025-05-20 02:09:32 -04:00

Merge pull request from aguegu/master

fix bug in target execsion in example makefile
This commit is contained in:
John Van Enk 2013-03-25 06:23:22 -07:00
commit 770789e9c1

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