From 56de50cf7f32558ad42560850a57c02f0a1c70ca Mon Sep 17 00:00:00 2001 From: Vivek Ayer Date: Sun, 18 Nov 2012 18:08:08 -0800 Subject: [PATCH] root: fix makefile to run testunity.out testunity.out is being created in the root directory and was being called from the 'all' target incorrectly. This is now fixed. --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 58ead54..753bbae 100644 --- a/makefile +++ b/makefile @@ -28,7 +28,7 @@ all: clean default default: ruby auto/generate_test_runner.rb test/testunity.c build/testunity_Runner.c $(C_COMPILER) $(INC_DIRS) $(SYMBOLS) $(SRC_FILES) $(OUT_FILE) - $(TARGET) + ./$(TARGET) clean: $(CLEANUP)