Commit 79886641 by René

echo

parent 9456ded2
Showing with 7 additions and 5 deletions
......@@ -9,15 +9,17 @@ $(TARGET): $(SOURCES)
$(CC) $(GCOV_FLAGS) $(SOURCES) -o $(TARGET)
run: $(TARGET)
./$(TARGET)
@./$(TARGET)
coverage: $(TARGET)
gcov $(SOURCE1).c
gcov $(SOURCE2).c
@gcov $(SOURCE1).c
@echo "------------------------------------------------------------"
@gcov $(SOURCE2).c
details: $(TARGET)
cat $(SOURCE1).c.gcov
cat $(SOURCE2).c.gcov
@cat $(SOURCE1).c.gcov
@echo "------------------------------------------------------------"
@cat $(SOURCE2).c.gcov
clean: $(TARGET).*
rm $(TARGET) $(SOURCE1).gcno $(SOURCE2).gcno $(SOURCE1).gcda $(SOURCE2).gcda $(SOURCE1).c.gcov $(SOURCE2).c.gcov
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment