SWDEV-447357 - Implement test coverage report integration

Change-Id: I9daa851dc2b86c3400dea700f01f5ad65bd119a1
This commit is contained in:
Branislav Brzak
2024-03-08 12:41:34 +01:00
committed by Maneesh Gupta
vanhempi 6c23e25c86
commit 5fd4f31995
3 muutettua tiedostoa jossa 16 lisäystä ja 2 poistoa
+4 -2
Näytä tiedosto
@@ -26,8 +26,10 @@ OBJ=generateHipAPICoverage
default_target: all
.PHONY : default_target
all: ${SRC}
${CC} ${CPPFLAGS} $^ -o ${OBJ}
all: ${OBJ}
${OBJ}: ${SRC}
@${CC} ${CPPFLAGS} $^ -o ${OBJ}
clean:
rm -f ${OBJ}