Lines Matching full:grep
93 targets=$(grep -E "^TARGETS +|^TARGETS =" Makefile | cut -d "=" -f2)
121 l1_tests=$(grep -r --include=Makefile "^LDLIBS" | \
122 grep -v "$filter" | awk -F: '{print $1}' | uniq)
134 l2_tests=$(grep -r --include=Makefile ": LDLIBS" | \
135 grep -v "$filter" | awk -F: '{print $1}' | uniq)
146 l3_tests=$(grep -r --include=Makefile "^VAR_LDLIBS" | \
147 grep -v "pkg-config\|PKG_CONFIG" | awk -F: '{print $1}' | uniq)
156 l4_tests=$(grep -r --include=Makefile "^LDLIBS" | \
157 grep "pkg-config\|PKG_CONFIG" | awk -F: '{print $1}' | uniq)
165 l5_tests=$(grep -r --include=Makefile "LDLIBS +=.*\$(IOURING_EXTRA_LIBS)" | \
207 test_libs=$(grep --include=Makefile "^LDLIBS" $test | \
208 grep -v "$filter" | \
218 test_libs=$(grep --include=Makefile ": LDLIBS" $test | \
219 grep -v "$filter" | \
228 test_libs=$(grep --include=Makefile "^VAR_LDLIBS" $test | \
229 grep -v "pkg-config" | sed -e 's/\:/ /' |
237 test_libs=$(grep --include=Makefile "^VAR_LDLIBS\|^LDLIBS" $test | \
238 grep "\(pkg-config\|PKG_CONFIG\).*|| echo " | \
247 test_libs=$(grep "^IOURING_EXTRA_LIBS +\?=" $tests | \
271 targets=$(echo "$targets" | grep -v "$fail_target")