Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
René Pihlak
/
IAS0440_code_coverage_gcc
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
79886641
authored
Mar 23, 2023
by
René
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
echo
parent
9456ded2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
Makefile
Makefile
View file @
79886641
...
@@ -9,15 +9,17 @@ $(TARGET): $(SOURCES)
...
@@ -9,15 +9,17 @@ $(TARGET): $(SOURCES)
$(CC)
$(GCOV_FLAGS)
$(SOURCES)
-o
$(TARGET)
$(CC)
$(GCOV_FLAGS)
$(SOURCES)
-o
$(TARGET)
run
:
$(TARGET)
run
:
$(TARGET)
./
$(TARGET)
@
./
$(TARGET)
coverage
:
$(TARGET)
coverage
:
$(TARGET)
gcov
$(SOURCE1)
.c
@
gcov
$(SOURCE1)
.c
gcov
$(SOURCE2)
.c
@
echo
"------------------------------------------------------------"
@
gcov
$(SOURCE2)
.c
details
:
$(TARGET)
details
:
$(TARGET)
cat
$(SOURCE1)
.c.gcov
@
cat
$(SOURCE1)
.c.gcov
cat
$(SOURCE2)
.c.gcov
@
echo
"------------------------------------------------------------"
@
cat
$(SOURCE2)
.c.gcov
clean
:
$(TARGET).*
clean
:
$(TARGET).*
rm
$(TARGET)
$(SOURCE1)
.gcno
$(SOURCE2)
.gcno
$(SOURCE1)
.gcda
$(SOURCE2)
.gcda
$(SOURCE1)
.c.gcov
$(SOURCE2)
.c.gcov
rm
$(TARGET)
$(SOURCE1)
.gcno
$(SOURCE2)
.gcno
$(SOURCE1)
.gcda
$(SOURCE2)
.gcda
$(SOURCE1)
.c.gcov
$(SOURCE2)
.c.gcov
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment